mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 09:27:59 +01:00
15 lines
401 B
C#
15 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.
|
|
}
|
|
}
|