armory/blender/arm/logicnode/scene/LN_spawn_collection.py
2020-09-08 23:21:41 +02:00

28 lines
928 B
Python

import bpy
from arm.logicnode.arm_nodes import *
class SpawnCollectionNode(ArmLogicTreeNode):
"""Spawns a collection to the current scene."""
bl_idname = 'LNSpawnCollectionNode'
bl_label = 'Spawn Collection'
bl_icon = 'NONE'
property0: PointerProperty(name='Collection', type=bpy.types.Collection)
def init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketShader', 'Transform')
self.add_output('ArmNodeSocketAction', 'Out')
self.add_output('ArmNodeSocketArray', 'Top-Level Objects')
self.add_output('ArmNodeSocketArray', 'All Objects')
self.add_output('ArmNodeSocketObject', 'Owner Object')
def draw_buttons(self, context, layout):
layout.prop_search(self, 'property0', bpy.data, 'collections', icon='NONE', text='')
add_node(SpawnCollectionNode, category=MODULE_AS_CATEGORY, section='collection')