Commit before rebuilding in OdenGraphQT

This commit is contained in:
2025-02-12 21:06:59 -07:00
parent 6e311de24b
commit 2a95535e0a
36 changed files with 1645 additions and 179 deletions

View File

@ -8,9 +8,11 @@ class ArrayNode(BaseNode):
- Stores incoming values in an array with size defined by ArraySize.
When full, it removes the oldest value.
"""
__identifier__ = 'io.github.nicole.array'
__identifier__ = 'bunny-lab.io.array_node'
NODE_NAME = 'Array'
def __init__(self):
super(ArrayNode, self).__init__()
self.values = {} # Ensure values is a dictionary.