Torque3D/Templates/BaseGame/game/data/gameUI/gameUI.tscript

24 lines
441 B
Plaintext
Raw Permalink Normal View History

function gameUI::onCreate(%this)
{
}
function gameUI::onDestroy(%this)
{
}
function gameUI::initServer(%this){}
function gameUI::onCreateGameServer(%this){}
function gameUI::onDestroyGameServer(%this){}
function gameUI::initClient(%this)
{
//guis
2020-10-05 20:50:45 +00:00
%this.queueExec("./GUIs/playGui.gui");
%this.queueExec("./GUIs/playGui");
}
function gameUI::onCreateClientConnection(%this){}
function gameUI::onDestroyClientConnection(%this){}