├── README.md ├── editor_window.py ├── main.py ├── node_editor ├── __init__.py ├── edge │ ├── __init__.py │ ├── edge_object.py │ └── graphics_edge.py ├── node │ ├── __init__.py │ ├── content_widget.py │ ├── graphics_node.py │ └── node_object.py ├── scene │ ├── __init__.py │ ├── graphics_scene.py │ └── scene_object.py ├── socket │ ├── __init__.py │ ├── graphics_socket.py │ └── socket_object.py └── view │ ├── __init__.py │ └── graphics_view.py └── readme_images ├── connection_example.gif └── navigation_example.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/README.md -------------------------------------------------------------------------------- /editor_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/editor_window.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/main.py -------------------------------------------------------------------------------- /node_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/edge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/edge/edge_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/edge/edge_object.py -------------------------------------------------------------------------------- /node_editor/edge/graphics_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/edge/graphics_edge.py -------------------------------------------------------------------------------- /node_editor/node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/node/content_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/node/content_widget.py -------------------------------------------------------------------------------- /node_editor/node/graphics_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/node/graphics_node.py -------------------------------------------------------------------------------- /node_editor/node/node_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/node/node_object.py -------------------------------------------------------------------------------- /node_editor/scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/scene/graphics_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/scene/graphics_scene.py -------------------------------------------------------------------------------- /node_editor/scene/scene_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/scene/scene_object.py -------------------------------------------------------------------------------- /node_editor/socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/socket/graphics_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/socket/graphics_socket.py -------------------------------------------------------------------------------- /node_editor/socket/socket_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/socket/socket_object.py -------------------------------------------------------------------------------- /node_editor/view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/view/graphics_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/node_editor/view/graphics_view.py -------------------------------------------------------------------------------- /readme_images/connection_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/readme_images/connection_example.gif -------------------------------------------------------------------------------- /readme_images/navigation_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golubevcg/maya_node_editor/HEAD/readme_images/navigation_example.gif --------------------------------------------------------------------------------