Hi,
I have this code that clicks the "Add Goal" in the IK Tag. This creates a null that corresponds to the goal. Is there a way to access this null after creation?
Currently I have this:
IKGoal = c4d.CallButton(IKTag, c4d.ID_CA_IK_TAG_ADD_GOAL)
print(IKGoal)
#returns NONE rather than the Null IK Goal
It creates a newly created Null object that represents the IK Goal but when I print(IKGoal)
, it results to none rather than the Null IK Goal.
Is there a way around this?
Thank you for looking at the problem