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 = {
x: window.innerWidth / 5,
y: window.innerHeight / 5,
x: window.innerWidth / 2,
y: window.innerHeight / 2,
};
Gizmos.clear();
Gizmos.vector(
center,
{
x: center.x + gravity.x,
y: center.y + gravity.y,
x: center.x + gravity.x / 2,
y: center.y + gravity.y / 2,
},
{ color: 'grey', width: 3, size: 15 },
);