Skip to content

Commit

Permalink
Update sockets in node
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarEmaraDev authored Dec 23, 2023
1 parent 459ae82 commit 730caf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions animation_nodes/nodes/mesh/get_custom_attribute.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
("FLOAT_COLOR", "Color", "", "NONE", 4),
("BYTE_COLOR", "Byte Color", "", "NONE", 5),
("BOOLEAN", "Boolean", "", "NONE", 6),
("INT32_2D", "Int32_2d", "", "NONE", 7),
("INT32_2D", "Integer 2D", "", "NONE", 7),
]

class GetCustomAttributeNode(AnimationNode, bpy.types.Node):
Expand Down Expand Up @@ -39,7 +39,7 @@ def create(self):
elif self.dataType == "BOOLEAN":
self.newOutput("Boolean List", "Values", "data")
else:
self.newOutput("Int2 List", "Values", "data")
self.newOutput("Integer 2D List", "Values", "data")
self.newOutput("Text", "Type", "type", hide = True)
self.newOutput("Text", "Domain ", "domain", hide = True)
self.newOutput("Text", "Data Type ", "dataType", hide = True)
Expand Down

0 comments on commit 730caf3

Please sign in to comment.