mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 09:04:38 +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
26
Templates/Empty/game/art/gui/customProfiles.cs
Normal file
26
Templates/Empty/game/art/gui/customProfiles.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (c) 2012 GarageGames, LLC
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to
|
||||||
|
// deal in the Software without restriction, including without limitation the
|
||||||
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
// sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in
|
||||||
|
// all copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
|
// IN THE SOFTWARE.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// 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/guiTreeViewCtrl.cs");
|
||||||
exec("./scripts/gui/messageBoxes/messageBox.ed.cs");
|
exec("./scripts/gui/messageBoxes/messageBox.ed.cs");
|
||||||
|
|
||||||
exec("./art/gui/customProfiles.cs");
|
|
||||||
|
|
||||||
echo(" % - Initialized Core");
|
echo(" % - Initialized Core");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,11 @@ function initClient()
|
||||||
$Client::GameTypeQuery = $appName;
|
$Client::GameTypeQuery = $appName;
|
||||||
$Client::MissionTypeQuery = "Any";
|
$Client::MissionTypeQuery = "Any";
|
||||||
|
|
||||||
|
// 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/gameProfiles.cs");
|
||||||
|
exec("art/gui/customProfiles.cs");
|
||||||
|
|
||||||
// The common module provides basic client functionality
|
// The common module provides basic client functionality
|
||||||
initBaseClient();
|
initBaseClient();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@
|
||||||
// IN THE SOFTWARE.
|
// 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/guiTreeViewCtrl.cs");
|
||||||
exec("./scripts/gui/messageBoxes/messageBox.ed.cs");
|
exec("./scripts/gui/messageBoxes/messageBox.ed.cs");
|
||||||
|
|
||||||
exec("./art/gui/customProfiles.cs");
|
|
||||||
|
|
||||||
echo(" % - Initialized Core");
|
echo(" % - Initialized Core");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,8 +60,11 @@ function initClient()
|
||||||
$Client::GameTypeQuery = $appName;
|
$Client::GameTypeQuery = $appName;
|
||||||
$Client::MissionTypeQuery = "Any";
|
$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
|
// The common module provides basic client functionality
|
||||||
initBaseClient();
|
initBaseClient();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue