Search the Community
Showing results for tags 'PyQt'.
-
I have a custom pyqt ui with a list widget in it. I'd like that list widget to update if the user changes context in the network view. e.g. from object to SOP to ROP (Driver) etc. I believe I can utilise the ContextEvent handler but I don't know how to initiate it. Can anyone help me out or poi...
-
Hi, guys! Just wanted to share with you some of my experiments. huilib - is a simple Python wrapper around Houdini's native .ui language. It has been written "just for fun", so no warranty if it works for you, but I think it's pretty usable for a simple UI, in situations, when using PyQt...
-
hi, i need some help with resizable widgets. it seems the window wont redraw the window canvas. i tried to resize the window with a event(second picture), but nothing worked. the .ui comes from QtDesigner. do i have to set some flags? is it possible at all? i appreciate your help, thx....
-
http://patreon.com/posts/33249763 http://gumroad.com/l/houdinisupercharged In this video I will show you some of the inner workings of the context-sensitive rule-based hotkey system that I implemented and one I have been using for a while to speed up my workflow inside Houdini. It's a...
-
- 5
-
- optimization
- walkthrough
-
(and 11 more)
Tagged with:
-
Hi guys, I'm having a simple shelf tool in Houdini: from PySide2 import QtCore, QtGui, QtWidgets class PysideTest(QtWidgets.QMainWindow): def __init__(self, parent=None): super(PysideTest, self).__init__(parent) test = QtWidgets.QWidget() self.resize(80...
-
I know the icons are stored here: hicon:/SVGIcons.index? and the short form to add one to a tool or shelf would be, for example, BUTTONS_add.svg. But how can I point to one of these icons from a pyside gui? Is there a fullpath I can use?
-
How to get houdini mainWindow & parent PyQt/PySide Qwidget to mainWindow in 14.0 and 15.0?? hou.ui.mainQtWindow() not working here
-
A few weeks ago i started working on a shelf tool for my self, to learn PyQt and make my own live a bit easier. It allows uses to create a list of node names and assign colours to each name. When applied all nodes in the project matching to any of the given names is given a colour linked to that na...
- 1 reply
-
- PyQt
- Shelf tool
-
(and 3 more)
Tagged with:
-
Hi, I'm currently working on an asset browser implemented as a python panel using PySide. The main part of it is a QListWidget containing one items per asset. I'm trying to implement drag and drop functionality to place items directly in viewport at drop position. For dragging I'm using the...
-
Pipeline Technical Director - Digital Domain Vancouver Location: Vancouver, BC Summary: Pipeline Technical Directors are responsible for improving the overall efficiency of the facility-wide production pipeline. They design, implement, and manage tools that assist the digital artists with...
-
- Pipeline TDDigital Domain
- Vancouver
- (and 7 more)
-
Python in CG pipeline Masterclass with Pavel Giydenko originaly taught in Russian, translated (by me) to English. Toppics include - Python in CG Pipeline intro - Implementation of PyQt - Python- operators in Houdini - Live Connect and Data Transfer - Correct pattern for Object Oriented Prog...
- 6 replies
-
- 3
-
- Free
- Masterclass
- (and 5 more)
-
Hi, I looked for but couldn't find an answer to my question, so sorry if this has actually been answered before. I am having a hard time having the PyQt4 library that is installed on my Win7 machine imported into houdini. When I try to run my code that includes an import command of PyQt4, I am gett...
- 2 replies
-
- pyqt
- environment variables
-
(and 1 more)
Tagged with:
-
Hey guys I started using pyqt inside Houdini using eventloops. I followed this link from sidefx for setup and I'm able to get it working http://www.sidefx.com/docs/houdini12.5/hom/cookbook/pyqt/part1/ But it seems that the application runs independent of Houdini's UI. I'm just curious whether t...