Parcourir la source

:beetle: Fix slide not finishing hitting accept

Seems like _unhandled_key_input is called on node even if
is_processing_unhandled_input is true. Check if it's an engine bug.
DricomDragon il y a 2 ans
Parent
commit
7c2fd7b6d1
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      godot/projector/slide/Slide.gd

+ 3 - 0
godot/projector/slide/Slide.gd

@@ -29,6 +29,9 @@ func get_center():
 
 
 func _unhandled_key_input(event: InputEvent):
+	if not is_processing_unhandled_input():
+		return # seems to be hacky, see if it's an engine bug
+
 	if event.is_action("ui_accept") and event.is_pressed():
 		finished.emit()
 		get_viewport().set_input_as_handled()