NodeGraphQt icon indicating copy to clipboard operation
NodeGraphQt copied to clipboard

Node graph framework that can be re-implemented into applications that supports PySide2

Results 95 NodeGraphQt issues
Sort by recently updated
recently updated
newest added

I noticed [here](https://github.com/jchanvfx/NodeGraphQt/blob/main/NodeGraphQt/widgets/viewer.py#L69) that you have ```python self.setViewportUpdateMode(QtWidgets.QGraphicsView.FullViewportUpdate) ``` is it dangerous to set bounding rect viewport update instead? ```python self.setViewportUpdateMode(QtWidgets.QGraphicsView.BoundingRectViewportUpdate) ``` When dragging nodes, I noticed the full updates...

Python's json doesn't serialize **set** objects. I unfortunately can't submit a PR but the fix is relatively simple, in case anyone else encounters this issue. line 553 of NodeGraphQt/base/model.py: ```python...

Create a BaseNode with two comboBoxes (using add_combo_menu) with enough items for the first's listView to overlap the second (at least 5 elements). Note how the second comboBox draws over...

duplicate

Adding this fixes a fatal error which prevents the properties bin from displaying properly when a number node is used.

I know from #376 that you said that the Group Nodes and Subgraphs aren't quite fully developed, but I thought I'd add a large-ish example along with some issues I'm...

``` python # get the nodes menu. nodes_menu = graph.get_context_menu('nodes') # here we add override the context menu for "MyGroupNode". nodes_menu.add_command('Expand Group', func=expand_group_node, node_type='MyGroupNode') ``` Right clicking on a group...

Hello, I found an issue with expanding graphs: https://github.com/jchanvfx/NodeGraphQt/blob/a8fa9b394d35bf4fcad3c241ec1bd7a98b40bb1c/NodeGraphQt/base/graph.py#L2958 At this line 👆 you iterate though the items of an internal dict. A few lines lower, within the iteration there...

Hi Johnny. If I expand a group, then clear the session, the group tab stays open and can't be closed anymore. Version 0.6.38

Hey Johnny Chan hope you're doing good. Needed a node graph today and remembered this project. I'm building a visual representation of RV's node graph, so it's a bit odd...

Hi, If I zoom out too far, at certain zoom level, custom widgets added with `add_custom_widget()` method disappear. I understand that this is normal when using `QGraphicsView` in **Qt**. It's...