Hello,
I want an object to add another object but have that added object be parented to the first. Is there any way to do this with python? thx
-Matthew
Hello,
I want an object to add another object but have that added object be parented to the first. Is there any way to do this with python? thx
-Matthew
thats pretty easy
monster = scene.addObject("monster",spawner,0)
child = scene.addObject("child",monster,0)
child.setParent(monster)
would that still work if i had multiple of the same object already in the scene?
yes it will