15 lines
408 B
C#
15 lines
408 B
C#
|
|
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
|
||
|
|
Flight // Camera following the airplane in flight
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|