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

18 lines
587 B
Python
Raw Normal View History

2017-11-08 23:02:40 +01:00
from arm.logicnode.arm_nodes import *
2020-10-28 20:29:01 +01:00
@deprecated('Set Action Paused')
class ResumeActionNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Resumes the given action."""
2017-11-08 23:02:40 +01:00
bl_idname = 'LNResumeActionNode'
2020-10-11 17:06:36 +02:00
bl_label = 'Resume Action'
2020-10-09 22:43:17 +02:00
bl_description = "Please use the \"Set Action Paused\" node instead"
2020-10-28 20:29:01 +01:00
arm_category = 'Animation'
2020-10-09 22:43:17 +02:00
arm_version = 2
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')