armory/blender/arm/logicnode/input/LN_get_cursor_location.py
Moritz Brückner 96aa0ee890 Use custom sockets for default data types
This allows to listen for socket updates for the live patch system
2021-07-10 21:46:44 +02:00

16 lines
572 B
Python

from arm.logicnode.arm_nodes import *
class GetCursorLocationNode(ArmLogicTreeNode):
"""Returns the mouse cursor location in screen coordinates (pixels)."""
bl_idname = 'LNGetCursorLocationNode'
bl_label = 'Get Cursor Location'
arm_section = 'mouse'
arm_version = 1
def init(self, context):
super(GetCursorLocationNode, self).init(context)
self.add_output('ArmIntSocket', 'X')
self.add_output('ArmIntSocket', 'Y')
self.add_output('ArmIntSocket', 'Inverted X')
self.add_output('ArmIntSocket', 'Inverted Y')