diff --git a/Bootstrap_LangStudies.Windows.bat b/Bootstrap_LangStudies.Windows.bat deleted file mode 100644 index 9cd9516..0000000 --- a/Bootstrap_LangStudies.Windows.bat +++ /dev/null @@ -1,46 +0,0 @@ - - - - - -where "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" >nul 2>nul -if not ERRORLEVEL 0 ( - echo Visual Studio 2019 not found... Remove this error message if you do have it. - pause - exit -) - -where scons >nul 2>nul -if not ERRORLEVEL 0 ( - python pip install scons -) - -git clone --recurse-submodules https://github.com/Ed94/LangStudies - -cd LangStudies -pause - -start build_engine.release.bat -timeout 10 - -start build_engine.release_debug.bat - -:tools_wait -timeout 1 -if not exist Engine\gd\bin\godot.windows.tools.64.exe ( - goto :tools_wait -) -timeout 10 - -start Engine\gd\bin\godot.windows.tools.64.exe -e Editor/project.godot -timeout 30 - -taskkill /f /im godot.windows.tools.64.exe - -:opt_wait -timeout 1 -if not exist Engine\gd\bin\godot.windows.opt.64.exe ( - goto :opt_wait -) - -start /w build_project.bat diff --git a/build_engine.bat b/build_engine.bat new file mode 100644 index 0000000..47ced79 --- /dev/null +++ b/build_engine.bat @@ -0,0 +1,10 @@ +start build_engine.debug.bat +timeout 10 + +start build_engine.release_debug.bat +timeout 10 + +start build_engine.release.bat +timeout 10 + + diff --git a/build_project.bat b/build_project.bat index 7af07f0..0ecd702 100644 --- a/build_project.bat +++ b/build_project.bat @@ -6,7 +6,7 @@ if %HH% lss 10 (set CUR_HH=0%time:~1,1%) set NN=%time:~3,2% set SS=%time:~6,2% set MS=%time:~9,2% -set SUBFILENAME=%YYYY%%MM%%DD%-%HH%%NN%%SS% +set SUBFILENAME=%YYYY%%MM%%DD%_%HH%%NN%%SS% cd Builds mkdir %SUBFILENAME% diff --git a/editor.bat b/editor.bat index e9aa649..c79cceb 100644 --- a/editor.bat +++ b/editor.bat @@ -1,3 +1,3 @@ -start Engine\gd\bin\godot.windows.tools.64.exe -e Editor/project.godot +start Engine\gd\bin\godot.windows.opt.tools.64.exe -e Editor/project.godot diff --git a/debug.bat b/game.debug.bat similarity index 100% rename from debug.bat rename to game.debug.bat diff --git a/game.release.bat b/game.release.bat new file mode 100644 index 0000000..b16d032 --- /dev/null +++ b/game.release.bat @@ -0,0 +1,3 @@ +start Engine\gd\bin\godot.windows.opt.64.exe --path Editor/ + + diff --git a/game.release_debug.bat b/game.release_debug.bat new file mode 100644 index 0000000..f6adf09 --- /dev/null +++ b/game.release_debug.bat @@ -0,0 +1,3 @@ +start Engine\gd\bin\godot.windows.opt.tools.64.exe --path Editor/ + +