mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 06:09:46 +03:00
6 lines
119 B
GDScript
6 lines
119 B
GDScript
extends Control
|
|
|
|
func _process(_delta):
|
|
if Input.is_action_just_pressed("toggle_control_hints"):
|
|
visible = !visible
|