mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-05 10:09:47 +03:00
7 lines
148 B
GDScript
7 lines
148 B
GDScript
extends Control
|
|
|
|
|
|
func _input(input_event: InputEvent) -> void:
|
|
if input_event.is_action_pressed(&"toggle_control_hints"):
|
|
visible = not visible
|