Update Files
This commit is contained in:
13
leenkx/blender/lnx/logicnode/animation/LN_get_root_motion.py
Normal file
13
leenkx/blender/lnx/logicnode/animation/LN_get_root_motion.py
Normal file
@ -0,0 +1,13 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetRootMotionNode(LnxLogicTreeNode):
|
||||
"""Gets root motion of an armature object"""
|
||||
bl_idname = 'LNGetRootMotionNode'
|
||||
bl_label = 'Get Root Motion'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Object')
|
||||
self.add_output('LnxStringSocket', 'Bone')
|
||||
self.add_output('LnxVectorSocket', 'Velocity')
|
||||
self.add_output('LnxRotationSocket', 'Rotation')
|
Reference in New Issue
Block a user