2025-12-15 09:20:15 +00:00
|
|
|
|
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>
|
2025-12-19 15:26:13 +01:00
|
|
|
|
Maze,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gameplay camera following Pulver (after exiting maze while still player-controlled)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
PulverGameplay
|
2025-12-15 09:20:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|