1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
// -----------------------------------------------------------------------------
// File: exit.ss
// Description: exit plugin (Debug Mode)
// Author: Alexandre Martins <http://opensurge2d.org>
// License: MIT
// -----------------------------------------------------------------------------
/*
This plugin lets the user exit the Debug Mode.
*/
object "Debug Mode - Exit" is "debug-mode-plugin"
{
input = spawn("Debug Mode - Input");
debugMode = null;
state "main"
{
// return to the game if the back button is pressed
if(input.buttonPressed("back"))
debugMode.exit();
}
fun onLoad(debugModeObject)
{
debugMode = debugModeObject;
}
fun onUnload(debugModeObject)
{
}
}
|