Some checks failed
Build and Deploy / build-macos (push) Failing after 10s
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
Build and Deploy / build-linux (push) Has been cancelled
9 lines
275 B
JavaScript
9 lines
275 B
JavaScript
// Chess game configuration for Moth framework
|
|
return {
|
|
title: "Chess",
|
|
resolution: { width: 480, height: 480 },
|
|
internal_resolution: { width: 480, height: 480 },
|
|
fps: 60,
|
|
clearColor: [22/255, 120/255, 194/255, 1],
|
|
mode: 'stretch' // No letterboxing for chess
|
|
}; |