25 lines
620 B
C#
25 lines
620 B
C#
namespace Minigames.TrashMaze.Data
|
|
{
|
|
/// <summary>
|
|
/// Camera states for Trash Maze minigame
|
|
/// </summary>
|
|
public enum TrashMazeCameraState
|
|
{
|
|
/// <summary>
|
|
/// Main gameplay camera following Trafalgar around the level
|
|
/// </summary>
|
|
Gameplay,
|
|
|
|
/// <summary>
|
|
/// Maze camera following Pulver when exploring the maze alone
|
|
/// </summary>
|
|
Maze,
|
|
|
|
/// <summary>
|
|
/// Gameplay camera following Pulver (after exiting maze while still player-controlled)
|
|
/// </summary>
|
|
PulverGameplay
|
|
}
|
|
}
|
|
|