-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Right now we don't have any good way to handle command line arguments outside of the core Engine.cpp file. We should have a good, easily accessible command line argument parser. This could go hand in hand with refactoring our config file parser to take an approach similar to UE, which has "Config Variables" that you can set via ini files or special C++ variables.
That may be more work than it's worth though, and we can probably get away with a simple command line parser with a layout like this:
./Sandboxe.exe -KeyString=Value -KeyInt=12 -keyString="I like this format" -BoolFlagIf you add a bool flag, then just adding -BoolFlag will automatically be set to true. We should still allow for you to explicitly say -BoolFag=OFF though, so that users can use some environment variables as well.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers