mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 01:18:00 +01:00
24 lines
638 B
C#
24 lines
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; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|