Explorar o código

case sensitivity script fixes

Azaezel %!s(int64=10) %!d(string=hai) anos
pai
achega
826be7287a

+ 8 - 8
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);
 }

+ 1 - 1
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");

+ 8 - 8
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);
 }

+ 1 - 1
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");