From 7b9147d901268543a5ba1f4bec5f4115836a5d44 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Thu, 19 Nov 2020 14:44:45 -0500 Subject: [PATCH] Input: flip y-motion to match our usual coordinates (top left is (0, 0)) --- Shared/Input.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/Input.cs b/Shared/Input.cs index 7801294..3155d37 100644 --- a/Shared/Input.cs +++ b/Shared/Input.cs @@ -73,10 +73,10 @@ namespace SemiColinGames { Motion.X = 1; } if (up && !down) { - Motion.Y = 1; + Motion.Y = -1; } if (down && !up) { - Motion.Y = -1; + Motion.Y = 1; } }