AddCollectionnode -> CreateCollectionNode

This commit is contained in:
Moritz Brückner 2020-09-09 20:34:23 +02:00
parent 3ea181fc37
commit 1bde147a23

View file

@ -1,13 +1,13 @@
from arm.logicnode.arm_nodes import *
class AddGroupNode(ArmLogicTreeNode):
class CreateCollectionNode(ArmLogicTreeNode):
"""Add Group node"""
bl_idname = 'LNAddGroupNode'
bl_label = 'Add Collection'
bl_label = 'Create Collection'
def init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Collection')
self.add_output('ArmNodeSocketAction', 'Out')
add_node(AddGroupNode, category=MODULE_AS_CATEGORY, section='collection')
add_node(CreateCollectionNode, category=MODULE_AS_CATEGORY, section='collection')