Shawn Wang

NMVHS

About Me

Connect

LOCATION
Shanghai, China
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

Visualize joints without promoting TRS ports? 2024年12月8日3:11

Hi! I wonder if there is a way to visualize the joints / TransformObjects without promoting their TRS controls when debugging component script. For example I have a TransformObject that has xform input connected to other node's output, I'd like to visualize how this TransformObject behave when value changes in other node.

Thanks!

How to use *::2.0 nodes in python-like component snippet? 2024年9月30日23:21

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? 2024年9月28日0:34

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?