armory/blender/arm/logicnode/animation/LN_get_tilesheet_state.py
2020-10-14 10:03:47 -03:00

17 lines
653 B
Python

from arm.logicnode.arm_nodes import *
class GetTilesheetStateNode(ArmLogicTreeNode):
"""Returns the information about the current tilesheet of the given object."""
bl_idname = 'LNGetTilesheetStateNode'
bl_label = 'Get Tilesheet State'
arm_version = 1
def init(self, context):
super(GetTilesheetStateNode, self).init(context)
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('NodeSocketString', 'Tilesheet')
self.add_output('NodeSocketInt', 'Frame')
self.add_output('NodeSocketBool', 'Is Paused')
add_node(GetTilesheetStateNode, category=PKG_AS_CATEGORY, section='tilesheet')