From 826be7287a88e3755a94c81869efa7a3df32cd02 Mon Sep 17 00:00:00 2001 From: Azaezel Date: Fri, 14 Aug 2015 18:00:36 -0500 Subject: [PATCH] case sensitivity script fixes --- Templates/Empty/game/tools/debugger/main.cs | 16 ++++++++-------- Templates/Empty/game/tools/navEditor/main.cs | 2 +- Templates/Full/game/tools/debugger/main.cs | 16 ++++++++-------- Templates/Full/game/tools/navEditor/main.cs | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Templates/Empty/game/tools/debugger/main.cs b/Templates/Empty/game/tools/debugger/main.cs index 8fad76509..f51222665 100644 --- a/Templates/Empty/game/tools/debugger/main.cs +++ b/Templates/Empty/game/tools/debugger/main.cs @@ -33,15 +33,15 @@ function initializeDebugger() echo(" % - Initializing Debugger"); // Load the scripts. - exec("./Scripts/debugger.ed.cs"); + exec("./scripts/debugger.ed.cs"); // And the guis. - exec("./Gui/breakConditionDlg.ed.gui"); - exec("./Gui/connectDlg.ed.gui"); - exec("./Gui/editWatchDlg.ed.gui"); - exec("./Gui/findDlg.ed.gui"); - exec("./Gui/debugger.ed.gui"); - exec("./Gui/watchDlg.ed.gui"); + exec("./gui/breakConditionDlg.ed.gui"); + exec("./gui/connectDlg.ed.gui"); + exec("./gui/editWatchDlg.ed.gui"); + exec("./gui/findDlg.ed.gui"); + exec("./gui/debugger.ed.gui"); + exec("./gui/watchDlg.ed.gui"); } function destroyDebugger() @@ -64,5 +64,5 @@ function startDebugger() // Set up the GUI. DebuggerConsoleView.setActive(false); - Canvas.pushDialog(DebuggerGui); + $GameCanvas.pushDialog(DebuggerGui); } diff --git a/Templates/Empty/game/tools/navEditor/main.cs b/Templates/Empty/game/tools/navEditor/main.cs index b47752efc..bcc9cac59 100644 --- a/Templates/Empty/game/tools/navEditor/main.cs +++ b/Templates/Empty/game/tools/navEditor/main.cs @@ -34,7 +34,7 @@ function initializeNavEditor() echo(" % - Initializing Navigation Editor"); // Execute all relevant scripts and GUIs. - exec("./NavEditor.cs"); + exec("./navEditor.cs"); exec("./NavEditorGui.gui"); exec("./NavEditorToolbar.gui"); exec("./NavEditorConsoleDlg.gui"); diff --git a/Templates/Full/game/tools/debugger/main.cs b/Templates/Full/game/tools/debugger/main.cs index 8fad76509..f51222665 100644 --- a/Templates/Full/game/tools/debugger/main.cs +++ b/Templates/Full/game/tools/debugger/main.cs @@ -33,15 +33,15 @@ function initializeDebugger() echo(" % - Initializing Debugger"); // Load the scripts. - exec("./Scripts/debugger.ed.cs"); + exec("./scripts/debugger.ed.cs"); // And the guis. - exec("./Gui/breakConditionDlg.ed.gui"); - exec("./Gui/connectDlg.ed.gui"); - exec("./Gui/editWatchDlg.ed.gui"); - exec("./Gui/findDlg.ed.gui"); - exec("./Gui/debugger.ed.gui"); - exec("./Gui/watchDlg.ed.gui"); + exec("./gui/breakConditionDlg.ed.gui"); + exec("./gui/connectDlg.ed.gui"); + exec("./gui/editWatchDlg.ed.gui"); + exec("./gui/findDlg.ed.gui"); + exec("./gui/debugger.ed.gui"); + exec("./gui/watchDlg.ed.gui"); } function destroyDebugger() @@ -64,5 +64,5 @@ function startDebugger() // Set up the GUI. DebuggerConsoleView.setActive(false); - Canvas.pushDialog(DebuggerGui); + $GameCanvas.pushDialog(DebuggerGui); } diff --git a/Templates/Full/game/tools/navEditor/main.cs b/Templates/Full/game/tools/navEditor/main.cs index b47752efc..bcc9cac59 100644 --- a/Templates/Full/game/tools/navEditor/main.cs +++ b/Templates/Full/game/tools/navEditor/main.cs @@ -34,7 +34,7 @@ function initializeNavEditor() echo(" % - Initializing Navigation Editor"); // Execute all relevant scripts and GUIs. - exec("./NavEditor.cs"); + exec("./navEditor.cs"); exec("./NavEditorGui.gui"); exec("./NavEditorToolbar.gui"); exec("./NavEditorConsoleDlg.gui");