Almantas Vasiliauskas

Almantas

About Me

I wear whatever hat the shot needs. One day it's pure character animation, the next it's hyper-focusing on clean deformations and bulletproof rigs. Then it's diving into VEX and Python to automate pipeline bottlenecks, or spending 16 hours dialing in procedural geometry and Vellum dynamics. Came ov...  more

Connect

LOCATION
Vilnius, Lithuania
ウェブサイト

Houdini Skills

ADVANCED
Procedural Modeling  | Digital Assets  | Character Rigging  | Motion Editing  | Animation  | Cloth  | Crowds  | VEX  | Python
INTERMEDIATE
Environments  | Hair & Fur  | Solaris  | Karma  | Lighting  | Pyro FX  | Fluids  | Destruction FX  | PDG
BEGINNER
Muscles  | Mantra  | Realtime FX

Availability

I am available for Freelance Work

Recent Forum Posts

Get selected channel in graph with Python 2023年11月23日12:30

Hi, michaelf,

correct, I am getting just an empty dictionary in keyframes variable "dict_keys()". Still have no idea, why it doesn't work for me. Your suggestion to use hou.playbar.channelList() works great for my case. Many thanks!!!

Get selected channel in graph with Python 2023年11月21日11:42

Hi, everyone!

after a long day of struggling I have reached a wall and looking for help. I need to get a name of parm of selected channel with Python, but had no luck with that.

Maybe someone is familiar with ChannelGraph [www.sidefx.com] class?

Strangely a simple example with keyframes in Houdini's help, doesn't work either:

import hou
channel_editor = hou.ui.paneTabOfType(hou.paneTabType.ChannelEditor)
keyframes = channel_editor.graph().selectedKeyframes()
for parm in keyframes.keys():
    for key in keyframes[parm]:
        key.setValue(2 * key.value())
        parm.setKeyframe(key)


Thanks!