LNXSDK/leenkx/blender/lnx/logicnode/animation/LN_set_tilesheet_paused.py
2025-01-22 16:18:30 +01:00

16 lines
528 B
Python

from lnx.logicnode.lnx_nodes import *
class SetTilesheetPausedNode(LnxLogicTreeNode):
"""Sets the tilesheet paused state of the given object."""
bl_idname = 'LNSetTilesheetPausedNode'
bl_label = 'Set Tilesheet Paused'
lnx_section = 'tilesheet'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_input('LnxNodeSocketObject', 'Object')
self.add_input('LnxBoolSocket', 'Paused')
self.add_output('LnxNodeSocketAction', 'Out')