Aleksandr Kirichenko

FaitelTech

About Me

専門知識
Generalist
業界:
Film/TV

Connect

LOCATION
Novi Sad, Serbia
ウェブサイト

Houdini Engine

INTERMEDIATE
プロシージャルワークフロー  | Digital Assets  | Cloth  | Solaris  | Karma  | Lighting  | Pyro FX  | 説明  | PDG  | VEX  | Python
BEGINNER
Environments  | キャラクタ & アニメーション  | Motion Editing  | Animation  | Hair & Fur  | Crowds  | Muscles  | Fluids

Availability

I am available for Full Time Work

Recent Forum Posts

On the model, everything is zero 2025年1月15日6:48

You probably have the UV Coords toggle enabled in the viewport's Display Options.

VirtuCamera plugin: Virtual camera for Houdini (Py3) and iOS 2025年1月9日11:55

octavio.halo
Any chance for a Python 3.11 version?

https://github.com/shycats/PyVirtuCamera/releases [github.com]

I would love to update it, but the latest version of the available API is still 3.10 https://github.com/shycats/PyVirtuCamera/releases [github.com]

KT to TMI? 2024年11月27日2:58

If you'd like to use just kelvins without luminance, you can apply them using Color Picker.

If you have Kelvins + Luminance Chart [physicallybased.info], you can make a VEX wrangle to convert Temperature + Luminance to XYZ universal color space and then to linear sRGB;
int temperature = chi("Temperature");
int luminance = chi("luminance");
vector blackbody = blackbody(temperature, luminance);
vector rgb = xyztorgb(blackbody);
@Cd = rgb;