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

18 lines
659 B
Python
Raw Normal View History

2017-09-23 21:39:12 +02:00
from arm.logicnode.arm_nodes import *
class PauseTilesheetNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Pauses the given tilesheet action."""
2017-09-23 21:39:12 +02:00
bl_idname = 'LNPauseTilesheetNode'
2020-10-11 16:56:17 +02:00
bl_label = 'Pause Tilesheet'
2020-10-09 22:43:17 +02:00
bl_description = "Please use the \"Set Tilesheet Paused\" node instead"
bl_icon = 'ERROR'
arm_version = 2
2017-09-23 21:39:12 +02:00
def init(self, context):
super(PauseTilesheetNode, 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-09-23 21:39:12 +02:00
2020-10-09 22:43:17 +02:00
add_node(PauseTilesheetNode, category=PKG_AS_CATEGORY, section='tilesheet', is_obsolete=True)