Update GAME_CONFIG to disable debug mode for arcade physics

This commit is contained in:
Z. Cliffe Schreuders
2025-11-07 00:36:22 +00:00
parent 17848115a1
commit 3f06b8fc8c

View File

@@ -62,7 +62,7 @@ export const GAME_CONFIG = typeof Phaser !== 'undefined' ? {
default: 'arcade',
arcade: {
gravity: { y: 0 },
debug: true
debug: false
}
}
} : null;