summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs')
-rw-r--r--Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs b/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs
deleted file mode 100644
index f64b483..0000000
--- a/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using UnityEngine.Playables;
-
-namespace UnityEngine.Timeline
-{
- /// <inheritdoc />
- /// <summary>
- /// Use this track to add Markers bound to a GameObject.
- /// </summary>
- [Serializable]
- [TrackBindingType(typeof(GameObject))]
- [HideInMenu]
- [ExcludeFromPreset]
- public class MarkerTrack : TrackAsset
- {
- /// <inheritdoc/>
- public override IEnumerable<PlayableBinding> outputs
- {
- get
- {
- return this == timelineAsset.markerTrack ?
- new List<PlayableBinding> {ScriptPlayableBinding.Create(name, null, typeof(GameObject))} :
- base.outputs;
- }
- }
- }
-}