Update Files
This commit is contained in:
16
leenkx/blender/lnx/logicnode/scene/LN_get_collection.py
Normal file
16
leenkx/blender/lnx/logicnode/scene/LN_get_collection.py
Normal file
@ -0,0 +1,16 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetGroupNode(LnxLogicTreeNode):
|
||||
"""Searches for a collection of objects with the given name and
|
||||
outputs the collection's objects as an array, if found.
|
||||
|
||||
@seeNode Collection"""
|
||||
bl_idname = 'LNGetGroupNode'
|
||||
bl_label = 'Get Collection'
|
||||
lnx_section = 'collection'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxStringSocket', 'Name')
|
||||
|
||||
self.add_output('LnxNodeSocketArray', 'Objects')
|
Reference in New Issue
Block a user