Petr Zloty
pezetko
About Me
EXPERTISE
Technical Director
INDUSTRY
Advertising / Motion Graphics
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
License Administrator have stopped showing user name May 5, 2023, 11:33 a.m.
In the License Administrator, go to the menu File -> Preferences and uncheck "Scrub User Names"
Auto select node when checking display flag Sept. 29, 2022, 5:49 a.m.
You can add this code to
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).
"$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).
Reload python plugin while developing? Jan. 11, 2022, 8:38 a.m.
For reloading python modules I use:
For both py2.7/py3.7 you can do:
It's good to remove that reloading for the production version.
reload(module)
For both py2.7/py3.7 you can do:
from imp import reload
It's good to remove that reloading for the production version.