Contains information regarding an event after a players game mode is changed.
export class PlayerGameModeChangeAfterEvent { private constructor(); readonly fromGameMode: GameMode; readonly player: Player; readonly toGameMode: GameMode;} Copy
export class PlayerGameModeChangeAfterEvent { private constructor(); readonly fromGameMode: GameMode; readonly player: Player; readonly toGameMode: GameMode;}
Private
Readonly
The previous game mode before the change.
This property can't be read in early-execution mode.
Source Player for this event.
The current game mode after the change.
Contains information regarding an event after a players game mode is changed.
Source