Changed map to start at 0,0, Added debug config, altered camera pos

Changed the map to have the top left at 0,0, saving us from having to do
a bunch of transformations for all the objects we want to add to the
board.
This commit is contained in:
Tyler Marques 2025-03-07 10:42:09 -05:00
parent 9c14c58ce0
commit fc6283107c
No known key found for this signature in database
GPG key ID: 7672EFD79378341C
4 changed files with 104 additions and 77 deletions

19
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "launch",
"name": "Debug App",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/ai_animation",
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
},
"runtimeArgs": [
"--remote-debugging-port=9222"
],
"sourceMaps": true
}
]
}