Shawn Wang

NMVHS

About Me

Connect

LOCATION
Shanghai, China

Houdini Skills

Availability

Not Specified

Recent Forum Posts

How to use *::2.0 nodes in python-like component snippet? Sept. 30, 2024, 11:21 p.m.

esttri
you can always set this directly using:

xform.LookAt.v2_0(lookat_xform, lookup_xform)


There is however a way to automatically get the latest version of a given callback.

On your SOP node go to the Header folder. Turn the header toggle on and use the toggle add Version. Then a little function called HoudiniVersion() will be added to the beggining of you snippet. Based on your current houdini version we can now automatically deduce which version to use. meaning that

xform.LookAt(lookat_xform, lookup_xform)

should give the correct latest version.
Having said that. This is currently not supported for your own custom functions.

I hope this helps
That's great info, thank you!

How to use *::2.0 nodes in python-like component snippet? Sept. 28, 2024, 12:34 a.m.

Sometimes I come across APEX nodes that is 2.0 version, for example transform::LookAt::2.0.
In component snippet, if I use
xform.LookAt(lookat_xform, lookup_xform)
, a 1.0 version lookat node will be created. I wonder what's the correct way to use 2.0 version node in snippet?

How to visualize tags? Sept. 17, 2024, 10:13 p.m.

esttri
You can use the AttribAjustArray SOP, it comes with a viewer state. if you set the Attribute Class to Points it should show your joint tags.
Nice, thank you!