doctorbob
doctorbob
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Animation Editor -- Channel Properties before/after keyframe 2024年4月1日18:32
this is a delightful and long standing bug. welcome to the party, pal.
the workaround is to right-click the channel in the anim editor list, and you can get to the extrapolation from there
cheers,
chrisg
the workaround is to right-click the channel in the anim editor list, and you can get to the extrapolation from there
cheers,
chrisg
Houdini Crash Message when closed after using PyQt 2023年7月25日0:32
without knowing anything about your UI or what it's doing or how it's constructed...
if you're using qThreads and they're still running when you close the dialog, you'll usually get an insta-crash like this.
so something like
if you're using qThreads and they're still running when you close the dialog, you'll usually get an insta-crash like this.
so something like
def closeEvent(self, event): super(MyNodeUI, self).closeEvent(event) # self.worker is a reference to a QThread in this case if self.worker: logger.debug("waiting for worker thread") # wait for the thread to finish cleanly self.worker.wait() self.deleteLater()
Setting background image on render view using python 2023年7月18日22:41
Hey there,
you can do it, by calling a hscript command
cheers,
chrisg
you can do it, by calling a hscript command
copPath = "/my/plate/here.exr" hou.hscript('imgdispopt -f %s' % copPath)
cheers,
chrisg