2022-03-02 19:46:33 -08:00
|
|
|
|
namespace QSB.Messaging;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// global messenger events built into outer wilds
|
|
|
|
|
/// that are also used by qsb.
|
|
|
|
|
/// <para/>
|
|
|
|
|
/// don't change unless they change in-game!
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class OWEvents
|
2020-08-10 19:24:28 +02:00
|
|
|
|
{
|
2022-03-02 19:46:33 -08:00
|
|
|
|
public const string TurnOnFlashlight = nameof(TurnOnFlashlight);
|
|
|
|
|
public const string TurnOffFlashlight = nameof(TurnOffFlashlight);
|
|
|
|
|
public const string ProbeLauncherEquipped = nameof(ProbeLauncherEquipped);
|
|
|
|
|
public const string ProbeLauncherUnequipped = nameof(ProbeLauncherUnequipped);
|
|
|
|
|
public const string EquipSignalscope = nameof(EquipSignalscope);
|
|
|
|
|
public const string UnequipSignalscope = nameof(UnequipSignalscope);
|
|
|
|
|
public const string SuitUp = nameof(SuitUp);
|
|
|
|
|
public const string RemoveSuit = nameof(RemoveSuit);
|
|
|
|
|
public const string EquipTranslator = nameof(EquipTranslator);
|
|
|
|
|
public const string UnequipTranslator = nameof(UnequipTranslator);
|
|
|
|
|
public const string WakeUp = nameof(WakeUp);
|
|
|
|
|
public const string PlayerEnterQuantumMoon = nameof(PlayerEnterQuantumMoon);
|
|
|
|
|
public const string PlayerExitQuantumMoon = nameof(PlayerExitQuantumMoon);
|
|
|
|
|
public const string EnterRoastingMode = nameof(EnterRoastingMode);
|
|
|
|
|
public const string ExitRoastingMode = nameof(ExitRoastingMode);
|
|
|
|
|
public const string EnterFlightConsole = nameof(EnterFlightConsole);
|
|
|
|
|
public const string ExitFlightConsole = nameof(ExitFlightConsole);
|
|
|
|
|
public const string EnterShip = nameof(EnterShip);
|
|
|
|
|
public const string ExitShip = nameof(ExitShip);
|
|
|
|
|
public const string EyeStateChanged = nameof(EyeStateChanged);
|
|
|
|
|
public const string FlickerOffAndOn = nameof(FlickerOffAndOn);
|
2022-03-25 18:54:07 -07:00
|
|
|
|
public const string EnterDreamWorld = nameof(EnterDreamWorld);
|
|
|
|
|
public const string ExitDreamWorld = nameof(ExitDreamWorld);
|
2022-05-28 20:39:42 +01:00
|
|
|
|
public const string EnterRemoteFlightConsole = nameof(EnterRemoteFlightConsole);
|
|
|
|
|
public const string ExitRemoteFlightConsole = nameof(ExitRemoteFlightConsole);
|
2022-08-28 11:08:56 +01:00
|
|
|
|
public const string ProbeSnapshotRemoved = "Probe Snapshot Removed"; // pain
|
2022-08-27 23:21:20 -04:00
|
|
|
|
public const string StartShipIgnition = nameof(StartShipIgnition);
|
|
|
|
|
public const string CompleteShipIgnition = nameof(CompleteShipIgnition);
|
|
|
|
|
public const string CancelShipIgnition = nameof(CancelShipIgnition);
|
2023-01-23 20:13:31 +00:00
|
|
|
|
public const string ProbeEnterQuantumMoon = nameof(ProbeEnterQuantumMoon);
|
|
|
|
|
public const string ProbeExitQuantumMoon = nameof(ProbeExitQuantumMoon);
|
2023-01-22 22:44:59 +00:00
|
|
|
|
public const string EnterCloak = nameof(EnterCloak);
|
|
|
|
|
public const string ExitCloak = nameof(ExitCloak);
|
2022-02-24 22:04:54 -08:00
|
|
|
|
}
|