2025-12-07 19:36:57 +00:00
|
|
|
namespace Minigames.Airplane.Data
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Camera states for the airplane minigame
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum AirplaneCameraState
|
|
|
|
|
{
|
|
|
|
|
Intro, // Intro sequence camera
|
|
|
|
|
NextPerson, // Camera focusing on the next person
|
|
|
|
|
Aiming, // Camera for aiming the airplane
|
2025-12-17 00:55:47 +01:00
|
|
|
Flight, // Camera following the airplane in flight
|
|
|
|
|
TargetFlyby // Camera showing the target location (cinematic flyby)
|
2025-12-07 19:36:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|