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