A little Python tool I'm working on to draw poses for bendy characters in the APEX Scene Animate node.
Roy Ranheim Kristoffersen
Cool! Please tell a bit more on how you achived that.
citizen
Looks good! Does it preserve "bone" length?
citizen
The resulting pose should be a scaled up/down version of the drawn curve, with the start/end points on the same line determined by the drawn curve.
citizen
I was having in mind something like this:
danfitz82May I ask how you load the custom code into APEX Scene Animate? Thanks.
the custom code is loaded by the APEX Scene Animate node to act as a sort of sub-tool.
johnlilpy
May I ask how you load the custom code into APEX Scene Animate? Thanks.
def load(viewer_state): return State(viewer_state)
import stateutils import apex.ui.statecommandutils as scu import hou viewer = scu.getSceneViewer() kwargs = {} viewer.runStateCommand("getState", kwargs) state = kwargs['state'] scu.startTool("noadapextools.drawtool", kwargs)