armory/blender/arm/logicnode/object/LN_get_children.py

13 lines
389 B
Python
Raw Normal View History

2017-11-09 16:28:43 +01:00
from arm.logicnode.arm_nodes import *
class GetChildrenNode(ArmLogicTreeNode):
2020-09-08 23:14:51 +02:00
"""Get children node"""
2017-11-09 16:28:43 +01:00
bl_idname = 'LNGetChildrenNode'
bl_label = 'Get Children'
2017-11-09 16:28:43 +01:00
def init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('ArmNodeSocketArray', 'Array')
2017-11-09 16:28:43 +01:00
add_node(GetChildrenNode, category=PKG_AS_CATEGORY, section='relations')