| -rw-r--r-- | autoloads/CLI.gd | 16 | ||||
| -rw-r--r-- | export_presets.cfg | 10 | ||||
| -rw-r--r-- | project.godot | 2 | ||||
| -rw-r--r-- | ui/scenes/StartMenu.tscn | 1 |
4 files changed, 6 insertions, 23 deletions
diff --git a/autoloads/CLI.gd b/autoloads/CLI.gd deleted file mode 100644 index b471b08..0000000 --- a/autoloads/CLI.gd +++ /dev/null @@ -1,16 +0,0 @@ -extends Node - - -func _ready() -> void: - var p := Parser.new() - p.add_argument( - Arg.new( - {triggers = ["-h", "--help", "-?"], help = "show this help message and exit", action = "store_true"} - ) - ) - var args = p.parse_arguments() - if args == null: - get_tree().quit() - elif args.get("help", false): - print(p.help()) - get_tree().quit() diff --git a/export_presets.cfg b/export_presets.cfg index 9270cf2..ce421fa 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -118,16 +118,16 @@ script_encryption_key="" custom_template/debug="" custom_template/release="" -application/name="Godot Template" -application/info="Godot Template" +application/name="spaceshooty" +application/info="bonk the bullets" application/icon="" -application/identifier="com.godot-template" +application/identifier="bendn.spaceshooty" application/signature="" application/app_category="Games" application/short_version="1.0" application/version="1.0" -application/copyright="" -display/high_res=false +application/copyright="mit" +display/high_res=true privacy/microphone_usage_description="" privacy/camera_usage_description="" privacy/location_usage_description="" diff --git a/project.godot b/project.godot index 38ac450..6814394 100644 --- a/project.godot +++ b/project.godot @@ -68,7 +68,7 @@ _global_script_class_icons={ [application] -config/name="Space Shooter" +config/name="spaceshooty" run/main_scene="res://ui/scenes/StartMenu.tscn" boot_splash/image="res://sprites/icon.png" boot_splash/use_filter=false diff --git a/ui/scenes/StartMenu.tscn b/ui/scenes/StartMenu.tscn index dc6c15b..276840e 100644 --- a/ui/scenes/StartMenu.tscn +++ b/ui/scenes/StartMenu.tscn @@ -2190,7 +2190,6 @@ __meta__ = { [node name="pause" parent="." instance=ExtResource( 8 )] visible = false trigger = "options" -pausing = false [node name="Camera2D" type="Camera2D" parent="."] position = Vector2( 160, 90 ) |