From dafe38e4191d1e60be01594fb50b95f07456a064 Mon Sep 17 00:00:00 2001 From: urbit-pilled Date: Wed, 18 Dec 2024 00:37:25 +1300 Subject: [PATCH] fixed y axis values --- .../simple_nodes/simple_character/simple_character.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/block_code/simple_nodes/simple_character/simple_character.gd b/addons/block_code/simple_nodes/simple_character/simple_character.gd index 1197892a..1b4da5f1 100644 --- a/addons/block_code/simple_nodes/simple_character/simple_character.gd +++ b/addons/block_code/simple_nodes/simple_character/simple_character.gd @@ -42,12 +42,12 @@ const PLAYER_JOYSTICK_MOTION = { "up": { "axis": JOY_AXIS_LEFT_Y, - "axis_value": 1, + "axis_value": -1, }, "down": { "axis": JOY_AXIS_LEFT_Y, - "axis_value": -1, + "axis_value": 1, }, "left": {