mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 00:54:54 +00:00
Merge pull request #322 from thecelloman/fixcustomprofiles
Correct customProfiles.cs execution.
This commit is contained in:
commit
5fc1316869
6 changed files with 40 additions and 9 deletions
|
|
@ -20,6 +20,7 @@
|
|||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Game specific profiles are located here
|
||||
//-----------------------------------------------------------------------------
|
||||
// ----------------------------------------------------------------------------
|
||||
// This is the default save location for any GuiProfiles created in the
|
||||
// Gui Editor
|
||||
// ----------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -81,8 +81,6 @@ function onStart()
|
|||
exec("./scripts/gui/guiTreeViewCtrl.cs");
|
||||
exec("./scripts/gui/messageBoxes/messageBox.ed.cs");
|
||||
|
||||
exec("./art/gui/customProfiles.cs");
|
||||
|
||||
echo(" % - Initialized Core");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,8 +60,11 @@ function initClient()
|
|||
$Client::GameTypeQuery = $appName;
|
||||
$Client::MissionTypeQuery = "Any";
|
||||
|
||||
exec("art/gui/customProfiles.cs"); // override the base profiles if necessary
|
||||
|
||||
// These should be game specific GuiProfiles. Custom profiles are saved out
|
||||
// from the Gui Editor. Either of these may override any that already exist.
|
||||
exec("art/gui/defaultGameProfiles.cs");
|
||||
exec("art/gui/customProfiles.cs");
|
||||
|
||||
// The common module provides basic client functionality
|
||||
initBaseClient();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue