more work on the ui theme and changing the hud

This commit is contained in:
2025-11-05 08:28:07 +11:00
parent 2f4159ebbe
commit f257a5df68
187 changed files with 806 additions and 799 deletions

View File

@@ -0,0 +1,15 @@
class_name KeybindPopup
extends Control
signal event_detected(event: InputEvent)
var found_event: bool = false
func _input(event: InputEvent) -> void:
if found_event:
return
if event is InputEventKey or event is InputEventMouseButton or event is InputEventJoypadButton:
get_viewport().set_input_as_handled()
found_event = true
event_detected.emit(event)
queue_free()