armory/blender/arm/logicnode/input/LN_gamepad_coords.py
2020-11-17 12:01:15 -03:00

24 lines
816 B
Python

from arm.logicnode.arm_nodes import *
class GamepadCoordsNode(ArmLogicTreeNode):
"""Returns the coordinates of the given gamepad.
@seeNode Gamepad
@input Gamepad: the ID of the gamepad."""
bl_idname = 'LNGamepadCoordsNode'
bl_label = 'Gamepad Coords'
arm_version = 1
arm_section = 'gamepad'
def init(self, context):
super(GamepadCoordsNode, self).init(context)
self.add_output('NodeSocketVector', 'Left Stick')
self.add_output('NodeSocketVector', 'Right Stick')
self.add_output('NodeSocketVector', 'Left Movement')
self.add_output('NodeSocketVector', 'Right Movement')
self.add_output('NodeSocketFloat', 'Left Trigger')
self.add_output('NodeSocketFloat', 'Right Trigger')
self.add_input('NodeSocketInt', 'Gamepad')