mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Fixes issue where it would try and load a SIS file even if it doesnt exist
Fixed warning about use of invalid function 'setEnabled' instead of 'setActive' Fixed formatting of a schedule call in ExmapleGameMode Fixed EditorOpenMission logic to correctly get and use levelAsset Removed unneeded continues from menuInputButtons' refresh() Updated settings.xml to have sorted order for future consistency
This commit is contained in:
parent
5544951b5d
commit
7405453123
7 changed files with 263 additions and 256 deletions
|
|
@ -43,7 +43,7 @@ function ExampleGameMode::onMissionStart(%this)
|
|||
|
||||
// Start the game timer
|
||||
if (%this.duration)
|
||||
%this.gameSchedule = schedule(%this.duration * 1000, "onGameDurationEnd");
|
||||
%this.gameSchedule = schedule(%this.duration * 1000, 0, "onGameDurationEnd");
|
||||
|
||||
%this.running = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue