mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
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
24 lines
441 B
Plaintext
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){} |