From d6daf2e25577898ebaf1a1785ec828dccf1edae3 Mon Sep 17 00:00:00 2001 From: Giulio <74862175+Giulcoo@users.noreply.github.com> Date: Tue, 6 Aug 2024 14:46:18 +0200 Subject: [PATCH] feat: decreased collision precision (#107) --- src/game-logic/gridtypes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game-logic/gridtypes.ts b/src/game-logic/gridtypes.ts index 2982cff..4fc91a4 100644 --- a/src/game-logic/gridtypes.ts +++ b/src/game-logic/gridtypes.ts @@ -92,5 +92,5 @@ export const CIRCLE_GENERATOR = { radius_steps: 0.01, angle_steps: 100, radius_angle_percentage: 3, - collision_precision: 1.1, //The smaller the number the nearer the clusters are to each other + collision_precision: 1.2, //The smaller the number the nearer the clusters are to each other }