-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document -export_debug option in the help output
Fixes #5903.
- Loading branch information
Showing
2 changed files
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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_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_debug : Use together with -export, enables debug mode for the template.\n"); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
akien-mga
Author
Member
|
||
#endif | ||
} | ||
|
||
|
I found that it needs to be used instead of
-export
, not together with it.