Skip to content

Instantly share code, notes, and snippets.

@27thLiz
Created June 24, 2016 22:54
Show Gist options
  • Save 27thLiz/8a2fd6f78af3a4686c9eac7c605bd3be to your computer and use it in GitHub Desktop.
Save 27thLiz/8a2fd6f78af3a4686c9eac7c605bd3be to your computer and use it in GitHub Desktop.
extends TextureButton
func _ready():
connect("pressed", self, "_on_pressed")
connect("released", self, "_released")
func _on_pressed():
print("pressed")
func _released():
print("released")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment