You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix last two bindings in input_mapping demo
Also connect the signal from script, as it makes it easier to understand
than by having to check the connected signals via the GUI.
(cherry picked from commit 4eb49cc732)
This commit is contained in:
@@ -51,4 +51,6 @@ func _ready():
|
||||
# We assume that the key binding that we want is the first one (0), if there are several
|
||||
input_event = InputMap.get_action_list(action)[0]
|
||||
# See note at the beginning of the script
|
||||
get_node("bindings").get_node(action).get_node("Button").set_text(OS.get_scancode_string(input_event.scancode))
|
||||
var button = get_node("bindings").get_node(action).get_node("Button")
|
||||
button.set_text(OS.get_scancode_string(input_event.scancode))
|
||||
button.connect("pressed", self, "wait_for_input", [action])
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user