more guesswork

This commit is contained in:
Orion Reed 2024-12-20 19:23:11 -05:00
parent c8d537be29
commit 161de351d8
1 changed files with 4 additions and 4 deletions

View File

@ -91,16 +91,16 @@
}); });
const center = { const center = {
x: window.innerWidth / 5, x: window.innerWidth / 2,
y: window.innerHeight / 5, y: window.innerHeight / 2,
}; };
Gizmos.clear(); Gizmos.clear();
Gizmos.vector( Gizmos.vector(
center, center,
{ {
x: center.x + gravity.x, x: center.x + gravity.x / 2,
y: center.y + gravity.y, y: center.y + gravity.y / 2,
}, },
{ color: 'grey', width: 3, size: 15 }, { color: 'grey', width: 3, size: 15 },
); );