Martin Matzeder
sanostol
About Me
専門知識
Technical Director
業界:
Film/TV
Houdini Engine
Availability
Not Specified
Recent Forum Posts
procedurally rename bone names in VEX 2026年1月26日7:02
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 2026年1月17日12:45
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 2026年1月17日12:39
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