armory/blender/arm/logicnode/scene/LN_create_collection.py

16 lines
534 B
Python
Raw Normal View History

2017-11-27 10:07:33 +01:00
from arm.logicnode.arm_nodes import *
class CreateCollectionNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Creates a collection."""
2017-11-27 10:07:33 +01:00
bl_idname = 'LNAddGroupNode'
bl_label = 'Create Collection'
arm_version = 1
2017-11-27 10:07:33 +01:00
def init(self, context):
super(CreateCollectionNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Collection')
self.add_output('ArmNodeSocketAction', 'Out')
2017-11-27 10:07:33 +01:00
add_node(CreateCollectionNode, category=PKG_AS_CATEGORY, section='collection')