Moving an object to different positions using presets
Taoz
Posts: 9,940
Is there a way to create presets for the transforms of an object so you can move it around to different position in the scene? Like using different Nodes or Nulls you can select, to move it around?
Comments
How would that differ from a pose preset applied to the root node?Are you wanting a rlative offset from the current position? A script could do that - Scene.getPrimarySelection() (or get selected nodes and iterate), node.getXPoseControl(), thenget its value, increment it, and apply it.
Sorry for the lack of formatting but code tags don't work. It needs more error checking, and doesn't try to allow for aniamtion, but those are doable modifications
No, it's supposed to be absolute positions. I want to move an object around so it's in a particular absolute position for each of several different fixed camera views. Like if you could parent the object to each camera so it would move to the desired absolute position for a particular camera, whenever you select one.
If that's not possible, I guess external pose presets is the way to go, yes.
Well, in my practice, a couple of ways:
- Mostly recommended: Camera Magic + its Pose Add-on , which can memorize the Transforms of whatever a selected object for a certain Camera. Then the moment you switch to each camera, the memorized Transforms will be applied to that object, i.e. the object will "go to that position".
- Parent the object to each Camera, then save a Hierarchical Pose Preset... but apparently this way is a bit cumbersomoe ~
Camera Magic seems to be the solution here yes. Thanks!