mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 09:39:48 +00:00
10 lines
204 B
GDScript3
10 lines
204 B
GDScript3
|
class_name Frame extends Reference
|
||
|
# A class for frame properties.
|
||
|
# A frame is a collection of cels, for each layer.
|
||
|
|
||
|
|
||
|
var cels : Array # An array of Cels
|
||
|
|
||
|
func _init(_cels := []) -> void:
|
||
|
cels = _cels
|