Procházet zdrojové kódy

:beetle: Fix input handling hack

I was enabling the wrong input handling.
DricomDragon před 2 roky
rodič
revize
1ebfa49f17
1 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. 2 5
      godot/projector/slide/Slide.gd

+ 2 - 5
godot/projector/slide/Slide.gd

@@ -15,12 +15,12 @@ func _ready():
 
 
 func remove_focus() -> void:
-	set_process_unhandled_input(false)
+	set_process_unhandled_key_input(false)
 
 
 func focus() -> void:
 	set_visible(true)
-	set_process_unhandled_input(true)
+	set_process_unhandled_key_input(true)
 
 
 func get_center():
@@ -28,9 +28,6 @@ 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()