I do have some meshes under a Collection and I would like to put them into an Object Instancer while maintaining the original positions (it's a cartoon tree).
Can't find a way to do this.
Thanks!
I do have some meshes under a Collection and I would like to put them into an Object Instancer while maintaining the original positions (it's a cartoon tree).
Can't find a way to do this.
Thanks!
You may use the Object Instancer node to instance a group of empties, then you can set their instance_type to COLLECTION and set their instance_collection to whatever collection you want. For instance:
I instance empties and then trough Object Attribute Output I define some parameters... but where come from those instance_types and instance_collection inputs? Why the instance_type text input needs to be uppercase?
Thanks again!
– Dimitri Paiva May 25 '19 at 19:03instance_types and instance_collection are just the names of the properties in the python API. Hover over any property and you will see its API name. In this case, I hovered over the properties in the Object->Instancing panel to know their names. Moreover, it being uppercase is also related to how it is defined in the API, string properties are uppercase by convention.
– Omar Emara
May 25 '19 at 19:39