Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Parses command line arguments and options to allow for settings to be provided to a game when it's run.Usage:`ArgParse.get_options()` returns a dictionary of command-line options. eg: `game --foo=5 --bar` will return `{"foo":5, "bar":null}``ArgParse.get_arguments()` returns an array of command-line arguments. eg: `game foo bar` will return `[foo bar]`
GodotArgParse
Command line argument and option parsing for the Godot game engine.
Privacy Notice
As of version 1.1, this addon has a feature where it sends an HTTP POST request to a webserver which includes the project name it's being used in, which may be considered identifying information. The purpose of this data collection is purely to track the number of projects the addon is used in.
By enabling this plugin without modification, you agree to this data collection. If you would like to disable this data collection, you may remove the _enter_tree
function in plugin.gd
.
Parses command line arguments and options to allow for settings to be provided to a game when it's run.
Usage:
`ArgParse.get_options()` returns a dictionary of command-line options. eg: `game --foo=5 --bar` will return `{"foo":5, "bar":null}`
`ArgParse.get_arguments()` returns an array of command-line arguments. eg: `game foo bar` will return `[foo bar]`
Reviews
Quick Information
Parses command line arguments and options to allow for settings to be provided to a game when it's run.Usage:`ArgParse.get_options()` returns a dictionary of command-line options. eg: `game --foo=5 --bar` will return `{"foo":5, "bar":null}``ArgParse.get_arguments()` returns an array of command-line arguments. eg: `game foo bar` will return `[foo bar]`