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

16 lines
495 B
Python
Raw Normal View History

2017-11-08 23:02:40 +01:00
from arm.logicnode.arm_nodes import *
class ResumeActionNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Resume an action."""
2017-11-08 23:02:40 +01:00
bl_idname = 'LNResumeActionNode'
bl_label = 'Resume Action'
arm_version = 1
2017-11-08 23:02:40 +01:00
def init(self, context):
super(ResumeActionNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('ArmNodeSocketAction', 'Out')
2017-11-08 23:02:40 +01:00
add_node(ResumeActionNode, category=PKG_AS_CATEGORY)