Notifications
Clear all

[Closed] query transform values from CAT Objects

The script below could print the position and rotation of max objects. But that same code does not work for CAT Objects. The error claims that there is not position property for the cat bones. I know its there somewhere. How can I get acces to them?

selObjs = $;

for obj in selObjs do
(
pos = obj.pos;
rot = obj.rotation;

    format "pos = %

” pos ;
format “rot = %
” rot;
)

1 Reply
 PEN

Try…


 $.transform.pos
 

There will be a transform node and that has a position. They might not have a position track directly and that is why you are getting an error. You will get the same errors on Max objects if you for instance place a transform script controller on the transform of an object because there is no seperate position track down stream of the transform controller. The matrix how ever is still holding a position value in .row4