armory/blender/arm/logicnode/input/LN_get_cursor_location.py
2020-09-23 17:12:25 -03:00

17 lines
625 B
Python

from arm.logicnode.arm_nodes import *
class GetCursorLocationNode(ArmLogicTreeNode):
"""Use to get the location of the cursor in the screen (in pixels)."""
bl_idname = 'LNGetCursorLocationNode'
bl_label = 'Get Cursor Location'
arm_version = 1
def init(self, context):
super(GetCursorLocationNode, self).init(context)
self.add_output('NodeSocketInt', 'X')
self.add_output('NodeSocketInt', 'Y')
self.add_output('NodeSocketInt', 'Inverted X')
self.add_output('NodeSocketInt', 'Inverted Y')
add_node(GetCursorLocationNode, category=PKG_AS_CATEGORY, section='mouse')