THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 11/01/2005 at 04:40, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.100
Platform:
Language(s) : C.O.F.F.E.E ;
---------Hi,
I worte a function to get all my Objects which are under other Objects into the first level. If I do this by hand in c4d there is no problem, but if i do this by coffee the objects will be moved to an other point in the scene.
Can someone please tell me how to find a workaround or an other way to do this?
My function looks like this:
xyz(op,doc,parent){
while(op){
if(op->GetDown){
op=op->GetDown
xyz(op,doc,parent)
op->Remove()
op->InsertUnder(parent)
}
}
Greetings from Freiburg(Germany)
Tim