mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-20 10:09:48 +00:00
13 lines
182 B
GDScript3
13 lines
182 B
GDScript3
|
extends Button
|
||
|
|
||
|
|
||
|
var frame := 0
|
||
|
|
||
|
|
||
|
func _ready() -> void:
|
||
|
connect("pressed", self, "_button_pressed")
|
||
|
|
||
|
|
||
|
func _button_pressed() -> void:
|
||
|
Global.current_project.current_frame = frame
|