Beispiel #1
0
        public static AnimationEventViewerWindow OpenWindow(IList <AnimationClip> clips)
        {
            AnimationEventViewerWindow window = OpenWindow();

            window.Load(clips);
            return(window);
        }
Beispiel #2
0
        public static AnimationEventViewerWindow OpenWindow()
        {
            AnimationEventViewerWindow window = GetWindow <AnimationEventViewerWindow>(false, "Animation Event Viewer", true);

            window.Show();
            return(window);
        }
Beispiel #3
0
        public static AnimationEventViewerWindow OpenWindow(params AnimationClip[] clips)
        {
            AnimationEventViewerWindow window = OpenWindow();

            window.Load(clips);
            return(window);
        }
Beispiel #4
0
 public static void OpenAnimationEventViewerWithSelection()
 {
     if (selection != null && selection.Count > 0)
     {
         AnimationEventViewerWindow.OpenWindow(selection);
     }
 }