UnityEditor.AnimationWindow.GetAllAnimationWindows C# (CSharp) Method

GetAllAnimationWindows() public static method

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

Usage Example

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