A tool to index convert files into 4bpp indexed graphics with palettes to be used with embedded development kits.

tasks.json 318B

123456789101112131415
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/agbidx.csproj"
  11. ],
  12. "problemMatcher": "$msCompile"
  13. }
  14. ]
  15. }