1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-20 10:09:48 +00:00
Pixelorama/src/UI/Timeline/FrameButton.gd

13 lines
182 B
GDScript3
Raw Normal View History

extends Button
var frame := 0
func _ready() -> void:
connect("pressed", self, "_button_pressed")
func _button_pressed() -> void:
Global.current_project.current_frame = frame