Hi,
Apart from dragging the parameter to the console, how do I set the strength values of "Pose Morph Target" in Animated Mode using Python?
You can see an illustration of the problem here:
https://www.dropbox.com/s/dcc34oyaxp81p9q/c4d271_setting_value_of_pose_morph_target.jpg?dl=0
Here is my WIP code:
def main():
tag = doc.GetActiveTag()
morph = tag.GetMorph(1)
node = morph.GetFirst()
# I'm stuck at GetParam and SetParam
node.GetParam(index) # No matter what index I put, it returns none.
node.SetParam # I can't use the code because I lack the DESCID from the GetParam
Regards,
Ben