armory/blender/arm/logicnode/animation/LN_set_parent_bone.py
Moritz Brückner 96aa0ee890 Use custom sockets for default data types
This allows to listen for socket updates for the live patch system
2021-07-10 21:46:44 +02:00

18 lines
658 B
Python

from arm.logicnode.arm_nodes import *
class SetParentBoneNode(ArmLogicTreeNode):
"""Sets the given object parent to the given bone."""
bl_idname = 'LNSetParentBoneNode'
bl_label = 'Set Parent Bone'
arm_version = 1
arm_section = 'armature'
def init(self, context):
super(SetParentBoneNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('ArmNodeSocketObject', 'Parent', default_value='Parent')
self.add_input('ArmStringSocket', 'Bone', default_value='Bone')
self.add_output('ArmNodeSocketAction', 'Out')