Skip to content

Instantly share code, notes, and snippets.

@me2beats
Created March 1, 2022 11:00
Show Gist options
  • Save me2beats/25487fc4bd558920cb0241087bbd8854 to your computer and use it in GitHub Desktop.
Save me2beats/25487fc4bd558920cb0241087bbd8854 to your computer and use it in GitHub Desktop.
knopka zazhata 2 sec
extends Button
onready var timer = $Timer
func _on_Button_button_down():
timer.start()
func _on_Button_button_up():
timer.stop()
func _on_Timer_timeout():
print("knopka zazhata v techenie 2 sec")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment