mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
7 lines
124 B
GDScript3
7 lines
124 B
GDScript3
|
extends Button
|
||
|
|
||
|
var frame := 0
|
||
|
|
||
|
func _on_FrameButton_pressed() -> void:
|
||
|
Global.current_frame = frame
|
||
|
Global.change_frame()
|