UnityEditor.AnimationWindow.GetAllAnimationWindows C# (CSharp) 메소드

GetAllAnimationWindows() 공개 정적인 메소드

public static GetAllAnimationWindows ( ) : List
리턴 List
        public static List<AnimationWindow> GetAllAnimationWindows()
        {
            return s_AnimationWindows;
        }

Usage Example

예제 #1
0
 public static void RepaintAnimationWindow()
 {
     foreach (AnimationWindow current in AnimationWindow.GetAllAnimationWindows())
     {
         current.Repaint();
     }
 }
All Usage Examples Of UnityEditor.AnimationWindow::GetAllAnimationWindows