瀏覽代碼

:wrench: Prevent start button to quit title screen

DricomDragon 1 年之前
父節點
當前提交
c9efe0adf1
共有 3 個文件被更改,包括 13 次插入7 次删除
  1. 1 1
      godot/component/ui/pause/pause_menu.gd
  2. 6 0
      godot/component/ui/title/title_screen.gd
  3. 6 6
      godot/project.godot

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

@@ -2,7 +2,7 @@ extends VSplitContainer
 
 
 
 
 func _unhandled_input(event: InputEvent) -> void:
 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)
 		get_tree().set_pause(true)
 		show()
 		show()
 
 

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

@@ -8,6 +8,12 @@ func _ready() -> void:
 	%StartButton.grab_focus()
 	%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():
 func _on_start_button_pressed():
 	start_game.emit()
 	start_game.emit()
 	queue_free()
 	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)
 "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={
 move_left={
 "deadzone": 0.2,
 "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)
 "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)
 "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]
 [internationalization]