@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?
{
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