Martin Matzeder
sanostol
About Me
EXPERTISE
Technical Director
INDUSTRY
Film/TV
Houdini Skills
Availability
Not Specified
Recent Forum Posts
procedurally rename bone names in VEX Jan. 26, 2026, 7:02 a.m.
Hi, if Your input naming is very consistent You can use a wrangle or vop to insert this:
string elems [];
elems = re_split("_", s@name);
insert(elems, 3, "Insert"); // This inserts "Insert" at the 3 place in Your string
s@name = join(elems, "_");
Apex Abstract Control : how to customize Jan. 17, 2026, 12:45 p.m.
to what entity do You connect Your rig.
I tried to connect the output parameter of the "Attribute Config Control" to the graph and it connected somehow, but did not work.
You have to connect to the control group instead, then it works.
Martin
I tried to connect the output parameter of the "Attribute Config Control" to the graph and it connected somehow, but did not work.
You have to connect to the control group instead, then it works.
Martin
Driving arbitrary controller channels in APEX Jan. 17, 2026, 12:39 p.m.
If You want to use a slider in APEX it would be a apex graph/script solution that modifies Your apex rig graph.
If You want to import sop animation You can use the "APEX Scene Add Animation" Sop in combination with a "Attribute Adjust Dictionary" SOP
If You want to import sop animation You can use the "APEX Scene Add Animation" Sop in combination with a "Attribute Adjust Dictionary" SOP