FiE-Game/Assets/Cinema Director/System/Runtime/TrackGroups/ActorTrackGroup.cs
2023-07-27 00:47:00 +05:00

24 lines
No EOL
638 B
C#

using UnityEngine;
namespace CinemaDirector
{
/// <summary>
/// The ActorTrackGroup maintains an Actor and a set of tracks that affect
/// that actor over the course of the Cutscene.
/// </summary>
[TrackGroupAttribute("Actor Track Group", TimelineTrackGenre.ActorTrack)]
public class ActorTrackGroup : TrackGroup
{
[SerializeField]
private Transform actor;
/// <summary>
/// The Actor that this TrackGroup is focused on.
/// </summary>
public Transform Actor
{
get { return actor; }
set { actor = value; }
}
}
}