Davide Mella
wlvl_r
About Me
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
Labs Gaea nodes not recognizing Gaea 2 install(?) Dec. 3, 2025, 8:10 a.m.
Tested also with
Houdini 21.0.553
Labs 21.0.553
Gaea 2.2.6.0
Same error
Houdini 21.0.553
Labs 21.0.553
Gaea 2.2.6.0
Same error
Labs Gaea nodes not recognizing Gaea 2 install(?) Dec. 3, 2025, 5:30 a.m.
I am experiencing the same issue.
Houdini 21.0.440
Labs 21.0.553
Gaea 2.2.6.0
The re-install and re-start did not work so far
Houdini 21.0.440
Labs 21.0.553
Gaea 2.2.6.0
The re-install and re-start did not work so far
Performance Monitor / Python Workflows June 4, 2025, 5:19 a.m.
Hello!
Any news regarding this?
I'm trying to:
start the performance monitor pre-render
cache a sim with the filecacher
stop the performance monitor and save it to disk
Any news regarding this?
I'm trying to:
start the performance monitor pre-render
cache a sim with the filecacher
stop the performance monitor and save it to disk
#PRE-RENDER SCRIPT import os import hou rop = hou.pwd() node = rop.parent() # print(node) profile_name = "profile_"+node.name() # Start a new profile. # The profile automatically starts recording. profile = hou.perfMon.startProfile(profile_name) #POST-RENDER SCRIPT import os import hou rop = hou.pwd() node = rop.parent() # print(node) profile_name = "profile_"+node.name() profile = hou.perfMon.activeProfile() print(profile) # Stop the profile. # The profile automatically generates statistics for the recorded events. # You can now view the profile statistics in the Performance Monitor panetab. profile.stop() # Print the profile statistics in JSON format. print(profile.stats()) # Save the profile to disk. profile.save(profile_name)