mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
5781c42821
v0.2 of Pixelorama is out! - Added animation timeline. You can add. remove. clone and change order of your frames! - You can now import multiple images as frames. - Ability to save individual frames, all frames as multiple files, or all frames as a single file in the form of a horizontal or vertical spritesheet! - Different frames can have a unique amount of layers and they can be of different sizes. - Image scaling is now functional. - Added hints for UI elements. - A lot of UI changes.
8 lines
154 B
GDScript
8 lines
154 B
GDScript
extends Button
|
|
|
|
var frame := 0
|
|
|
|
func _on_FrameButton_pressed() -> void:
|
|
Global.current_frame = frame
|
|
#print(len(Global.canvases))
|
|
Global.change_frame() |