mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
14 lines
332 B
C#
14 lines
332 B
C#
using UnityEngine;
|
|
using UnityEngine.Playables;
|
|
|
|
namespace UnityEngine.Timeline
|
|
{
|
|
/// <summary>
|
|
/// A Track whose clips control time-related elements on a GameObject.
|
|
/// </summary>
|
|
[TrackClipType(typeof(ControlPlayableAsset), false)]
|
|
[ExcludeFromPreset]
|
|
public class ControlTrack : TrackAsset
|
|
{
|
|
}
|
|
}
|