Learning path: RIGGING IN HOUDINI 16+
37949 72 10- AtiSphere
- Member
- 9 posts
- Joined: June 2015
- Offline
- AtiSphere
- Member
- 9 posts
- Joined: June 2015
- Offline
- goldfarb
- Staff
- 3463 posts
- Joined: July 2005
- Offline
- AtiSphere
- Member
- 9 posts
- Joined: June 2015
- Offline
So I think I found what is the problem. In the tutorial you are using Houdini 16.5, when you are creating the constrains often the node have select and visibility flag off but in Houdini 17 when select and visibility flag are off there is strange creation of the Chop network and the constrain do not work. As soon as you enable the flags everything works fine.
Best regards Ati
Best regards Ati
- Nathan Apffel
- Member
- 52 posts
- Joined: Jan. 2016
- Offline
- goldfarb
- Staff
- 3463 posts
- Joined: July 2005
- Offline
- lou78
- Member
- 3 posts
- Joined: Jan. 2016
- Offline
Hi everyone,
Thanks a lot for this series, it's unlocking perspectives for everyone interested in Houdini character work, I guess.
I have a question regarding something which has not been tackled in any of the videos, though ( except if I missed it, which is still plausible, ah ah ):
How do you deal with IK/FK switch ( not blend ) ?
Meaning the ability to snap the FK on the IK and vice versa once one of the two has been animated ?
Is there any built-in tool for that in Houdini or does it have to run through CHOPS or Python ?
Thank you.
Thanks a lot for this series, it's unlocking perspectives for everyone interested in Houdini character work, I guess.
I have a question regarding something which has not been tackled in any of the videos, though ( except if I missed it, which is still plausible, ah ah ):
How do you deal with IK/FK switch ( not blend ) ?
Meaning the ability to snap the FK on the IK and vice versa once one of the two has been animated ?
Is there any built-in tool for that in Houdini or does it have to run through CHOPS or Python ?
Thank you.
- goldfarb
- Staff
- 3463 posts
- Joined: July 2005
- Offline
- GlenD
- Member
- 118 posts
- Joined: Dec. 2013
- Offline
@goldfarb, great series on riggin in Houdini. When I am finishing up the reverse foot rig, there is a script that goes into the L_ball_loc/rx channel. I keep getting this error when I type it in. Not sure how to input this Expression.
Has anyone else encountered this error?
It is at the 28 minute mark of the Rigging Series 06 video. This keeps giving me an error.
Error: Unable to evaluate expression (inline (8): Syntax error in expression
inline: Error parsing inline function
(/obj/F_Rig/L_ball_loc/rx)).
Glen
Has anyone else encountered this error?
{ if (ch("../L_foot_roll") <= 5.0) { return (fit (ch ("../L_foot_roll"), 0, 5, 0, 60) + fit (ch ("../L_ball_offset"), 0, 10, 0, 60)) } else if (ch ("../L_foot_roll") >= 5.0) { return (fit (ch ("../L_foot_roll"), 5, 10, 60, 0) + fit (ch ("../L_ball_offset"), 0, 10, 0, 60)) } }
It is at the 28 minute mark of the Rigging Series 06 video. This keeps giving me an error.
Error: Unable to evaluate expression (inline (8): Syntax error in expression
inline: Error parsing inline function
(/obj/F_Rig/L_ball_loc/rx)).
Glen
Edited by GlenD - July 9, 2019 14:32:13
- goldfarb
- Staff
- 3463 posts
- Joined: July 2005
- Offline
you have:
should be:
ch() is a function: https://www.sidefx.com/docs/houdini/expressions/ch.html [www.sidefx.com]
this is the expression I have in my working rig
ch ("../L_foot_roll")
should be:
ch("../L_foot_roll")
ch() is a function: https://www.sidefx.com/docs/houdini/expressions/ch.html [www.sidefx.com]
this is the expression I have in my working rig
{ if (ch("../R_foot_roll") <=5.0) { return (fit ( ch("../R_foot_roll"), 0, 5, 0, 60) + fit( ch("../R_ball_offset"), 0, 10, 0, 60) ); } else if (ch("../R_foot_roll") >=5.0) { return ( fit ( ch("../R_foot_roll"), 5, 10, 60, 0) + fit( ch("../R_ball_offset"), 0, 10, 0, 60) ) ; } }
- GlenD
- Member
- 118 posts
- Joined: Dec. 2013
- Offline
- GlenD
- Member
- 118 posts
- Joined: Dec. 2013
- Offline
When I was setting up the IK for the arms and the legs I ran into a strange issue. I setup the IK based on the Left Arm video. FK is setup and then IK was setup. I setup the Blend constraint in the Constraints node. Then nothing happens when I translate L_arm_bone_goal. I saved the hda, quit Houdini. Opened Houdini, loaded hda and the IK L_arm_bone_goal works. Not sure why this happens, it just does.
Houdini 17.5.293
Windows 10 Pro
Glen
Houdini 17.5.293
Windows 10 Pro
Glen
- lou78
- Member
- 3 posts
- Joined: Jan. 2016
- Offline
-
- Quick Links