Marc-André Belzile

mabelzile

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Redshift Installation in Houdini April 25, 2024, 1:21 p.m.

digones
mabelzile
These are the package config for all platforms

macOS:
{"env":[
    {"RS_PLUGIN_VERSION" : "${​HOUDINI_VERSION}​_arm64"}​,
    {"REDSHIFT_COREDATAPATH": "/Applications/redshift"}​,
    {"HOUDINI_PATH": "${​REDSHIFT_COREDATAPATH}​/redshift4houdini/${​RS_PLUGIN_VERSION}​"}​,
    {"PATH": "${​REDSHIFT_COREDATAPATH}​/bin"}​,
    {"PXR_PLUGINPATH_NAME" : "${​REDSHIFT_COREDATAPATH}​/redshift4solaris/${​RS_PLUGIN_VERSION}​"}]
}



The mac OS config files doesn't work. But @Stusic approach works.
Can you post your MACos package solution please ?

Changing StrokeCursor geometry in python viewer states March 11, 2024, 10:54 a.m.

Seems like there are 2 issues, one with the ability to customized the stroke cursor and a second one which seems related to an drawable update bug. Please log a bug.

Changing StrokeCursor geometry in python viewer states March 5, 2024, 10:21 a.m.

Ideally we should have a state parameter to let you know when a new cursor has been changed. Try overloading StrokeState.onMenuAction instead to set the cursor color.

e.g.
def onMenuAction(self, kwargs):
    super().onMenuAction(kwargs)

    menu_item = kwargs['menu_item']
    node = kwargs['node']
    if menu_item == 'cycle_brushes':
        self.cursor.brush.setWireframeColor(hou.Color(0,1,0))