Skip to content

Game Over

Game Over

Transitions the current scene to the game over screen.

Properties

System

Name Explanation Type
Use Scene Transition Whether to use the transitions associated with the current scene. Toggle

Examples

Trigger the Game Over Screen

Transitions to the game over screen using the current scene's exit transition.

scene_game_over();
{"Data":{"UseTransition":true,"Metadata":null},"TypeName":"MAR.Game.RPGCore.Models.Scripts.Commands.Scene.SceneGameOverCommand"}

Trigger the Game Over Screen Without a Transition

Transitions to the game over screen immediately without playing any scene transition.

scene_game_over(no_transition);
{"Data":{"UseTransition":false,"Metadata":null},"TypeName":"MAR.Game.RPGCore.Models.Scripts.Commands.Scene.SceneGameOverCommand"}