Evangelos Christopoulos

agelosc

About Me

VFX Artist
EXPERTISE
Technical Director
INDUSTRY
Advertising / Motion Graphics

Connect

LOCATION
Greece
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

PointInstancer and Light Linking March 3, 2021, 2:33 a.m.

This is actually something on the Redshift side. I've posted about it on the Redshift forums. Karma seems to produce the expected results. Thank you.

PointInstancer and Light Linking Feb. 24, 2021, 8:57 a.m.

I'm having some trouble with light linking on pointInstancer. Should the link be made on the prototypes or the pointInstancer primitive? Every combination I've tried is producing results I cannot fully understand so I thought I'd ask what the recommended procedure is or if this is something that is not supported by USD.

Thank you.

Layer attributes from VEX Nov. 23, 2020, 12:59 p.m.

I'm not sure about vex but you can easily get anything with a python node and the pxr USD API. For example

from pxr import Usd

stage = Usd.Stage.Open(<usd file path>)
unitscale = stage.GetMetadata("metersPerUnit")

There is already a stage variable when you create a python lop which is the conne ted stage so you can possibly skip the whole Usd.Open() line.

I might have syntax errors but hope it paints a picture. Documentation for the USD python API is a bit tricky but it's worth looking into it.