Petr Zloty

pezetko

About Me

専門知識
Technical Director
INDUSTRY
Advertising / Motion Graphics

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Skills

Availability

Not Specified

Recent Forum Posts

How to revoke a license from website 2024年1月8日7:35

You cannot use the web portal to move your licenses.

If you want to move the license to a different server, you have to return it first:
https://www.sidefx.com/faq/question/how-do-i-move-licenses-to-a-different-license-server/ [www.sidefx.com]

License Administrator have stopped showing user name 2023年5月5日11:33

In the License Administrator, go to the menu File -> Preferences and uncheck "Scrub User Names"

Auto select node when checking display flag 2022年9月29日5:49

You can add this code to "$HOUDINI_USER_PREF_DIR/houdini19.5/scripts/OnCreated.py"file. (Create the scripts folder and this file if it doesn't exist.)
import hou

def auto_select_on_display_flag_set(node, event_type, **kwargs):     # pylint: disable=W0613
    node.setSelected(node.isDisplayFlagSet())

def add_callback(kwargs):
    node = kwargs["node"]
    node.addEventCallback((hou.nodeEventType.FlagChanged,), auto_select_on_display_flag_set)

add_callback(kwargs)    # pylint: disable=E0602

This will auto-select a node with the display flag set (and auto-deselect nodes without it):


This is just quick Proof of Concept (not production tested).