armory/blender/arm/logicnode/animation/LN_get_action_state.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

16 lines
553 B
Python

from arm.logicnode.arm_nodes import *
class AnimationStateNode(ArmLogicTreeNode):
"""Returns the information about the current action of the given object."""
bl_idname = 'LNAnimationStateNode'
bl_label = 'Get Action State'
arm_version = 1
def init(self, context):
super(AnimationStateNode, self).init(context)
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('ArmStringSocket', 'Action')
self.add_output('ArmIntSocket', 'Frame')
self.add_output('ArmBoolSocket', 'Is Paused')