armory/blender/arm/logicnode/animation/LN_set_parent_bone.py

17 lines
628 B
Python
Raw Normal View History

2018-02-22 13:25:06 +01:00
from arm.logicnode.arm_nodes import *
class SetParentBoneNode(ArmLogicTreeNode):
2020-09-08 23:14:51 +02:00
"""Set parent bone node"""
2018-02-22 13:25:06 +01:00
bl_idname = 'LNSetParentBoneNode'
bl_label = 'Set Parent Bone'
2020-08-07 18:58:19 +02:00
bl_icon = 'NONE'
2018-02-22 13:25:06 +01:00
def init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('ArmNodeSocketObject', 'Parent', default_value='Parent')
self.add_input('NodeSocketString', 'Bone', default_value='Bone')
self.add_output('ArmNodeSocketAction', 'Out')
2018-02-22 13:25:06 +01:00
add_node(SetParentBoneNode, category=MODULE_AS_CATEGORY, section='armature')