Browse Source

:wrench: Prevent start button to quit title screen

DricomDragon 1 year ago
parent
commit
c9efe0adf1

+ 1 - 1
godot/component/ui/pause/pause_menu.gd

@@ -2,7 +2,7 @@ extends VSplitContainer
 
 
 func _unhandled_input(event: InputEvent) -> void:
-	if event.is_action_released("ui_cancel") and not get_tree().is_paused():
+	if event.is_action_released("ui_pause") and not get_tree().is_paused():
 		get_tree().set_pause(true)
 		show()
 

+ 6 - 0
godot/component/ui/title/title_screen.gd

@@ -8,6 +8,12 @@ func _ready() -> void:
 	%StartButton.grab_focus()
 
 
+func _input(event: InputEvent) -> void:
+	if event.is_action_released("ui_pause"):
+		# Prevent title screen to be paused
+		get_viewport().set_input_as_handled()
+
+
 func _on_start_button_pressed():
 	start_game.emit()
 	queue_free()

+ 6 - 6
godot/project.godot

@@ -34,12 +34,6 @@ ui_select={
 "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":32,"echo":false,"script":null)
 ]
 }
-ui_cancel={
-"deadzone": 0.5,
-"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194305,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null)
-, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":6,"pressure":0.0,"pressed":true,"script":null)
-]
-}
 move_left={
 "deadzone": 0.2,
 "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"echo":false,"script":null)
@@ -99,6 +93,12 @@ analog_secondary={
 "events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":4,"axis_value":1.0,"script":null)
 ]
 }
+ui_pause={
+"deadzone": 0.5,
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":6,"pressure":0.0,"pressed":true,"script":null)
+]
+}
 
 [internationalization]