diff options
author | Spartan322 <Megacake1234@gmail.com> | 2023-04-29 08:49:48 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2023-05-02 01:00:09 +0200 |
commit | 865e7aeca7c3090fee914b9ebde9490ef23d3559 (patch) | |
tree | 7836ab6e2e5bd751c226d86646883f8424577a7c /game/project.godot | |
parent | 10053cf259c55ee45803268a844edf1011d8a16b (diff) |
Add ArgumentParser
Streamlines parsing of commandline arguments
Arguments reside in ProjectSettings as `openvic2/data/arguments` as a dictionary
The dictionary's key is the option name
The dictionary is set with default values
This enables project setting overrides for arguments (user specified arguments take priority)
Add help commandline option
Prepare for removal of GameDebug.gd
Add game project description
Diffstat (limited to 'game/project.godot')
-rw-r--r-- | game/project.godot | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/game/project.godot b/game/project.godot index ff4081e..a43d7ba 100644 --- a/game/project.godot +++ b/game/project.godot @@ -11,6 +11,7 @@ config_version=5 [application] config/name="OpenVic2" +config/description="A faithful recreation of Victoria 2: Heart of Darkness with a focus on enhancing performance, multiplayer stability, and modability for modern machines." run/main_scene="res://src/GameStart.tscn" config/features=PackedStringArray("4.0", "Forward Plus") boot_splash/bg_color=Color(0.380392, 0.145098, 0.14902, 1) |