浏览代码

: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 2 年之前
父节点
当前提交
7c2fd7b6d1
共有 1 个文件被更改,包括 3 次插入0 次删除
  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()