From 3af4c218c0e70167db23a6303d2af30aff37d2fe Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 20 Aug 2020 23:40:50 -0400 Subject: Removed a bunch of stuff; Changes --- .../Editor/Window/TimelineWindow_Selection.cs | 80 ---------------------- 1 file changed, 80 deletions(-) delete mode 100644 Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs (limited to 'Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs') diff --git a/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs b/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs deleted file mode 100644 index c736e2e..0000000 --- a/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs +++ /dev/null @@ -1,80 +0,0 @@ -using UnityEngine; -using UnityEngine.Playables; -using UnityEngine.Timeline; - -namespace UnityEditor.Timeline -{ - partial class TimelineWindow - { - [SerializeField] - SequencePath m_SequencePath; - private Object lastSelectedGO { get; set; } - - void OnSelectionChange() - { - RefreshSelection(false); - } - - void RefreshSelection(bool forceRebuild) - { - // if we're in Locked mode, keep current selection - don't use locked property because the - // sequence hierarchy may need to be rebuilt and it assumes no asset == unlocked - if (m_LockTracker.isLocked || (state != null && state.recording)) - { - RestoreLastSelection(forceRebuild); - return; - } - - // selection is a TimelineAsset - Object selectedObject = Selection.activeObject as TimelineAsset; - if (selectedObject != null) - { - SetCurrentSelection(Selection.activeObject); - return; - } - - // selection is a GameObject, or a prefab with a director - var selectedGO = Selection.activeGameObject; - if (selectedGO != null) - { - bool isSceneObject = !PrefabUtility.IsPartOfPrefabAsset(selectedGO); - bool hasDirector = selectedGO.GetComponent() != null; - if (isSceneObject || hasDirector) - { - SetCurrentSelection(selectedGO); - return; - } - } - - // otherwise, keep the same selection. - RestoreLastSelection(forceRebuild); - } - - void RestoreLastSelection(bool forceRebuild) - { - state.SetCurrentSequencePath(m_SequencePath, forceRebuild); - } - - void SetCurrentSelection(Object obj) - { - var selectedGameObject = obj as GameObject; - if (selectedGameObject != null) - { - PlayableDirector director = TimelineUtility.GetDirectorComponentForGameObject(selectedGameObject); - SetCurrentTimeline(director); - lastSelectedGO = selectedGameObject; - } - else - { - var selectedSequenceAsset = obj as TimelineAsset; - if (selectedSequenceAsset != null) - { - SetCurrentTimeline(selectedSequenceAsset); - lastSelectedGO = selectedGameObject; - } - } - - Repaint(); - } - } -} -- cgit v1.2.3