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

26 lines
946 B
Python
Raw Normal View History

2017-04-08 00:34:45 +02:00
from arm.logicnode.arm_nodes import *
class GetChildNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Get the child of an object by the child object's name."""
2017-04-08 00:34:45 +02:00
bl_idname = 'LNGetChildNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Object Child'
arm_version = 1
2018-12-18 23:48:38 +01:00
property0: EnumProperty(
2018-07-04 12:29:41 +02:00
items = [('By Name', 'By Name', 'By Name'),
('Contains', 'Contains', 'Contains'),
('Starts With', 'Starts With', 'Starts With'),
('Ends With', 'Ends With', 'Ends With'),
],
name='', default='By Name')
2017-04-08 00:34:45 +02:00
def init(self, context):
super(GetChildNode, self).init(context)
2020-09-20 20:10:01 +02:00
self.add_input('ArmNodeSocketObject', 'Parent')
self.add_input('NodeSocketString', 'Child Name')
self.add_output('ArmNodeSocketObject', 'Child')
2017-04-08 00:34:45 +02:00
2018-07-04 12:29:41 +02:00
def draw_buttons(self, context, layout):
layout.prop(self, 'property0')
add_node(GetChildNode, category=PKG_AS_CATEGORY, section='relations')