From 563872c484270e5a8a35dd1dcc85ec7c4aaa7ec6 Mon Sep 17 00:00:00 2001 From: Angel Date: Tue, 7 Apr 2026 22:42:52 +0200 Subject: [PATCH] add tick delta time to math constants --- packages/math/src/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/math/src/constants.ts b/packages/math/src/constants.ts index 6276a3f..96ee14d 100644 --- a/packages/math/src/constants.ts +++ b/packages/math/src/constants.ts @@ -1,2 +1,3 @@ export const RAD_TO_DEG = 180 / Math.PI; export const DEG_TO_RAD = Math.PI / 180; +export const TICK_DT = 1 / 64;