eetu martola

eetu

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

How to use new hou.logging from 19.0? June 21, 2022, 10:25 a.m.

For anyone else ending up in this topic the logging doesn't have to be as fancy as above.
A minimal example would be:
entry = hou.logging.LogEntry(message = "alive!")
hou.logging.log(entry)

If you want to log onto disk, you could add in the beginning
sink = hou.logging.FileSink(filepath)
sink.connect("Python Logging")

Getting the size of instanced geometry Jan. 17, 2022, 1:28 p.m.

Happy to help, good luck!

HDA parameter interface not shown in UE Sept. 3, 2021, 4:09 a.m.

Sorry if this is obvious, but you need to rebuild the HDA once for the plugin to pick up the parameters.

I wish there were a "Refresh Parameter Interface" that would just pick up the interface without actually cooking, this can be a pain with very heavy assets. (or assets that error out with bad parameter values..)