SRT Constraints

Is there a neat way to constrain the individual components of scaling, rotation or translation of an object to that of another without parenting one to another?

I.e. I’d like to have the translation along X of object A to be the same as the rotation Z of object B, while all other components remain independent.

I can think of ways to do this via tasks and observer patterns, but I was wondering if there is something already built-in in Panda… is there?

Manu

Sounds like a CompassEffect, sort of. The CompassEffect can ensure that the translation X of object A matches the translation X of object B, but it can’t match translation X to rotation Z. For anything fancy like that, you should probably write a task.

David

Thanks David!