armory/blender/arm/logicnode/animation/LN_set_tilesheet_paused.py
2021-07-20 20:53:37 +02:00

16 lines
528 B
Python

from arm.logicnode.arm_nodes import *
class SetTilesheetPausedNode(ArmLogicTreeNode):
"""Sets the tilesheet paused state of the given object."""
bl_idname = 'LNSetTilesheetPausedNode'
bl_label = 'Set Tilesheet Paused'
arm_section = 'tilesheet'
arm_version = 1
def arm_init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('ArmBoolSocket', 'Paused')
self.add_output('ArmNodeSocketAction', 'Out')