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

15 lines
451 B
Python
Raw Normal View History

2017-11-09 16:28:43 +01:00
from arm.logicnode.arm_nodes import *
class GetChildrenNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the children of the given object."""
2017-11-09 16:28:43 +01:00
bl_idname = 'LNGetChildrenNode'
2020-09-29 18:38:17 +02:00
bl_label = 'Get Object Children'
2020-10-27 19:44:37 +01:00
arm_section = 'relations'
arm_version = 1
2017-11-09 16:28:43 +01:00
def init(self, context):
super(GetChildrenNode, self).init(context)
2020-09-20 20:10:01 +02:00
self.add_input('ArmNodeSocketObject', 'Parent')
2020-11-17 16:01:15 +01:00
2020-09-20 20:10:01 +02:00
self.add_output('ArmNodeSocketArray', 'Children')