Grass, debugger, noise height gen

This commit is contained in:
2025-11-30 00:06:04 +01:00
parent b4b4c69ec3
commit 0fbc7f32f2
11 changed files with 131 additions and 18 deletions

15
.vscode/launch.json vendored
View File

@@ -3,23 +3,10 @@
"configurations": [
{
"name": "Launch",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-out/bin/voxel-game",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true,
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true,
},
],
},
],
}