From e39b316e91e52c92c676fa2cd1acaf6c9a3e3d28 Mon Sep 17 00:00:00 2001 From: "Elizabeth (Lizzy) Hunt" Date: Thu, 3 Aug 2023 21:35:17 -0600 Subject: [PATCH] Add a TODO that I thought of while at parents' --- engine/systems/Input.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/systems/Input.ts b/engine/systems/Input.ts index 9a92163..eefb334 100644 --- a/engine/systems/Input.ts +++ b/engine/systems/Input.ts @@ -12,6 +12,9 @@ import type { Entity } from "../entities"; import { Action } from "../interfaces"; import { System, SystemNames } from "./"; +/** + * TODO: Make velocities reset on each game loop (as similar to acceleration) + */ export class Input extends System { private keys: Set; private actionTimeStamps: Map;