br1
br1
About Me
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
Tutorial on Partial Ragdoll with Motors? Nov. 24, 2022, 9:48 a.m.
Hi,
There is an example of partial ragdolls in the help/documentation. You can load it in Houdini and look at the file. The setup includes creating the groups with an agent transform node and then activating that group within the solver.
/examples/nodes/dop/crowdsolver/PartialRagdolls
There is an example of partial ragdolls in the help/documentation. You can load it in Houdini and look at the file. The setup includes creating the groups with an agent transform node and then activating that group within the solver.
/examples/nodes/dop/crowdsolver/PartialRagdolls
ragdoll crowd but plays clip instead of just ragdoll June 15, 2021, 10:34 a.m.
Hi, you can find more info about that in the following thread
https://www.sidefx.com/forum/topic/73592/ [www.sidefx.com]
Or just look at PinnedRagdolls.hda in your houdini\help\examples folder
https://www.sidefx.com/forum/topic/73592/ [www.sidefx.com]
Or just look at PinnedRagdolls.hda in your houdini\help\examples folder
KineFX - How to setup a character Rig as an HDA June 14, 2021, 10:50 a.m.
Hi Gany,
Have a look as this video :
https://www.youtube.com/watch?v=UJG7KH_RG1Y [www.youtube.com]
If you follow these instructions there's an explanation on how to edit the python code of your HDA to make it behave as rigpose while allowing your asset to display just a specific rigpose.
For example if you want to just display "rigpose2" you would use this kind of code (around line 400)
Have a look as this video :
https://www.youtube.com/watch?v=UJG7KH_RG1Y [www.youtube.com]
If you follow these instructions there's an explanation on how to edit the python code of your HDA to make it behave as rigpose while allowing your asset to display just a specific rigpose.
For example if you want to just display "rigpose2" you would use this kind of code (around line 400)
result = set() for n in posenodes: if n.name() == "rigpose2": crp_node = n.node("computerigpose1") else: continue