From b67ffb57c1bf6e9628339a3f43c71ccebdb46136 Mon Sep 17 00:00:00 2001 From: "Elizabeth (Lizzy) Hunt" Date: Thu, 3 Aug 2023 21:36:04 -0600 Subject: [PATCH] Update Input.ts --- engine/systems/Input.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/systems/Input.ts b/engine/systems/Input.ts index eefb334..4272ec8 100644 --- a/engine/systems/Input.ts +++ b/engine/systems/Input.ts @@ -14,6 +14,7 @@ import { System, SystemNames } from "./"; /** * TODO: Make velocities reset on each game loop (as similar to acceleration) + * - Then, we can add / remove velocity on update instead of just setting it and praying it's not modified externally */ export class Input extends System { private keys: Set;