support for love-build, fix memory issues. A few bugs to tweak

This commit is contained in:
2026-06-09 22:54:41 -07:00
parent 6b864a2d9b
commit 3109844765
17 changed files with 132 additions and 306 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lua-local",
"request": "launch",
"name": "Debug",
"program": {
"command": "love"
},
"args": [
".",
"debug"
],
},
{
"type": "lua-local",
"request": "launch",
"name": "Release",
"program": {
"command": "love"
},
"args": [
".",
],
},
]
}