mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
added debug batch file for windows improved project filters for executable: separated into engine and user sources refactored version numbers, added them to the .rc file changed /W2 to /W4 TORQUE_DEBUG,TORQUE_ENABLE_ASSERTS and TORQUE_DEBUG_GFX_MODE now automatically defined in debug mode
16 lines
383 B
Batchfile
16 lines
383 B
Batchfile
:: little debug helper script that helps you starting Torque3D with command line arguments.
|
|
|
|
:: possible args:
|
|
:: -log <Mode: 0,1,2>
|
|
:: -console
|
|
:: -level <level.mis>
|
|
:: -worldeditor
|
|
:: -guieditor
|
|
:: -help
|
|
|
|
:: as example, we just show the console
|
|
"@PROJECT_NAME@.exe" -console
|
|
|
|
:: or load a level and open the editor:
|
|
:: "@PROJECT_NAME@.exe" -console -level mylevel.mis -worldeditor
|