Hi community
does anyone know how I can access VAM autocollider coordinates (such as those of "Gen3b")? I need them for coordinate transformations (distances).
I am looking for a method similar to how it can be done with controls:
or for rigidbodies:
Are these autocolliders available for such calculations at all?
Thanks for any hints!!
does anyone know how I can access VAM autocollider coordinates (such as those of "Gen3b")? I need them for coordinate transformations (distances).
I am looking for a method similar to how it can be done with controls:
Code:
freecontroller1 = containingAtom.freeControllers.First(fc => fc.name == "xyControl");
Code:
rigidbody = containingAtom.GetStorableByID("xy") as DAZBone;
Thanks for any hints!!