mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
4331a0232e
Current frame label now shows the current frame and the number of all frames. Also, when saving frames as multiple files, the count starts at 1 instead of 0.
7 lines
124 B
GDScript
7 lines
124 B
GDScript
extends Button
|
|
|
|
var frame := 0
|
|
|
|
func _on_FrameButton_pressed() -> void:
|
|
Global.current_frame = frame
|
|
Global.change_frame() |