feat(nds): improve 3d model and texture display

This commit is contained in:
2026-01-08 13:10:26 +01:00
parent 8aa6ab4fd0
commit fc506495c9
24 changed files with 2027 additions and 1757 deletions

View File

@@ -1,2 +1,7 @@
export const SCREEN_WIDTH = 256;
export const SCREEN_HEIGHT = 192;
export const LOGICAL_WIDTH = 256;
export const LOGICAL_HEIGHT = 192;
export const SCREEN_SCALE = 2;
export const SCREEN_WIDTH = LOGICAL_WIDTH * SCREEN_SCALE;
export const SCREEN_HEIGHT = LOGICAL_HEIGHT * SCREEN_SCALE;