Przeglądaj źródła

Document -export_debug option in the help output

Fixes #5903.
Rémi Verschelde 7 lat temu
rodzic
commit
e3a1bf247d
2 zmienionych plików z 2 dodań i 0 usunięć
  1. 1 0
      .gitignore
  2. 1 0
      main/main.cpp

+ 1 - 0
.gitignore

@@ -55,6 +55,7 @@ gmon.out
 
 
 # Misc
 # Misc
 .DS_Store
 .DS_Store
+logs/
 
 
 # for projects that use SCons for building: http://http://www.scons.org/
 # for projects that use SCons for building: http://http://www.scons.org/
 .sconsign.dblite
 .sconsign.dblite

+ 1 - 0
main/main.cpp

@@ -190,6 +190,7 @@ void Main::print_help(const char *p_binary) {
 	OS::get_singleton()->print("\t-optimize <file> : Save an optimized copy of scene to <file>.\n");
 	OS::get_singleton()->print("\t-optimize <file> : Save an optimized copy of scene to <file>.\n");
 	OS::get_singleton()->print("\t-optimize_preset <preset> : Use a given preset for optimization.\n");
 	OS::get_singleton()->print("\t-optimize_preset <preset> : Use a given preset for optimization.\n");
 	OS::get_singleton()->print("\t-export <target> : Export the project using given export target.\n");
 	OS::get_singleton()->print("\t-export <target> : Export the project using given export target.\n");
+	OS::get_singleton()->print("\t-export_debug : Use together with -export, enables debug mode for the template.\n");
 #endif
 #endif
 }
 }