Migrated codebase to OdenGraphQT Successfully

This commit is contained in:
2025-02-12 21:43:48 -07:00
parent 2a95535e0a
commit ca5152b89a
21 changed files with 11 additions and 1424 deletions

View File

@ -1,4 +1,4 @@
from NodeGraphQt import BaseNode
from OdenGraphQt import BaseNode
class ArrayNode(BaseNode):
"""
@ -11,8 +11,6 @@ class ArrayNode(BaseNode):
__identifier__ = 'bunny-lab.io.array_node'
NODE_NAME = 'Array'
def __init__(self):
super(ArrayNode, self).__init__()
self.values = {} # Ensure values is a dictionary.