evan mathis

evanmathis

About Me

専門知識
Generalist
業界:
Film/TV

Connect

LOCATION
Los Angeles, United States
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

light linker with prototypes? 2024年7月3日11:32

I've got 3 light linker rules for 3 separate references-
1) A sphere
2) Some text
3) Some animated prototypes from a SOP create node

1 & 2 work fine, but once added to the light linker, the prototypes are no longer lit.
Without the light linker everything is lit just fine.

Any thoughts what I'm f'ing up would be very much appreciated.

(edit) to clarify, if i use the light linker * at all * even having unaffected lights in the scene, the prototypes are unlit.

(edit2) I pulled all of the pieces into a collection via an instancer, (which i probably should have done int he first place) and now everything is lit by one light and not excluded.

Localizing reference textures... there has to be a better way 2024年3月30日19:04

Hm. component output isn't working as well as I'd hoped.

But, there is a "modify paths" lop [www.sidefx.com]

It even has * almost * the solution i'm looking for on the manual page:

Change all UsdVolFieldAsset file paths to point inside a volumes subdirectory

 

if attributepath.endswith('.filePath'):
    parts = assetpath.split('/')
    return '/'.join(parts[0:-1]) + '/volumes/' + parts[-1]
return None

And while I can make sense of what that does, I have no clue how to adapt it to my purposes.

Localizing reference textures... there has to be a better way 2024年3月30日16:57

i'm using 20, i'll have to look at the component output node. that might be the answer i was looking for, thanks!