Access Unfreeze All in the Object's Coordinate Tab?
-
Hi,
Is there a way to access the Unfreeze All Button in the Object's Coordinate Tab? Specifically, clicking it.
Searching "Unfreeze All" in the documentation and the forum doesn't yield relevant (or direct results). -
Hey @bentraje,
Thank you for reaching out to us. This is a description, so this button should be clickable via c4d.CallButton. You can find the button ID here (which for me does show up when you search for 'Unfreeze All' in the docs). Lastly, this is a route you can take, but it is a bit brutish. You could also directly deal with the transforms yourself which would be a bit more elegant and flexible.
Cheers,
Ferdinand -
Gotcha. Thanks for the response.
c4d.CallButton(op, c4d.ID_BASEOBJECT_FROZEN_RESET) works as expected.