mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-28 16:18:00 +01:00
16 lines
401 B
C#
16 lines
401 B
C#
|
// Cinema Suite 2014
|
|||
|
|
|||
|
namespace CinemaDirector
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Enum of Unity playback modes
|
|||
|
/// </summary>
|
|||
|
public enum PlaybackMode
|
|||
|
{
|
|||
|
Disabled = 0, // Base case, we don't want whatever to happen at all.
|
|||
|
Runtime = 1, // Unity is in runtime mode
|
|||
|
EditMode = 2, // Unity is in edit mode
|
|||
|
RuntimeAndEdit = 3, // Both runtime and edit mode.
|
|||
|
}
|
|||
|
}
|