You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
238 B
GDScript
11 lines
238 B
GDScript
|
2 years ago
|
var id: int;
|
||
|
|
var attributes = {};
|
||
|
|
var layerId := -1;
|
||
|
|
var child_nodes = [];
|
||
|
|
var models = {};
|
||
|
|
var transforms = { 0: { "position": Vector3(), "rotation": Basis() } };
|
||
|
|
|
||
|
|
func _init(id,attributes):
|
||
|
|
self.id = id;
|
||
|
|
self.attributes = attributes;
|