Torque3D/Templates/BaseGame/game/data/gameUI/gameUI.tscript
AzaezelX c640d8823d template index file review
remove redundant referenes to $TorqueScriptFileExtension. exec and queueExec both handle those internaly.
as pointed out in #511, we were already executing the guimusicpayer.gui in the ut.tscript module via queue. as that case allows folks to bolt a true at the end of the method to override the file-call and replace it with a personalized variant in another module, removed the redundant exec
2021-07-20 11:02:38 -05:00

24 lines
441 B
Plaintext

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
%this.queueExec("./GUIs/playGui.gui");
%this.queueExec("./GUIs/playGui");
}
function gameUI::onCreateClientConnection(%this){}
function gameUI::onDestroyClientConnection(%this){}