THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 15/03/2004 at 11:09, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.200
Platform: Windows ;
Language(s) : C.O.F.F.E.E ; XPRESSO ;
---------
I´m stepping through the hierachy and creating cubes depending on what object is is stepped on in the hierachy using this code
while(stepObject){
if(instanceof(stepObject,BoneObject))
{
CreateCube(stepObject->GetDown()); // function to create cubes
}
stepObject=stepObject->GetNext();
}
[/code}
This stops working if a null is anywhere in the scene, is this normal? If yes how does one step properly with COFFEE through objects in the hierachy?
(sorry the formmating got messed up again by the browser)
Thanks