We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904abbd commit 4626735Copy full SHA for 4626735
1 file changed
packages/examples/src/examples/platformer/createGame.ts
@@ -1,6 +1,7 @@
1
import { DebugPanelPlugin } from "@melonjs/debug-plugin";
2
import {
3
Application,
4
+ AUTO,
5
audio,
6
device,
7
event,
@@ -23,7 +24,7 @@ export const createGame = () => {
23
24
const _app = new Application(800, 600, {
25
parent: "screen",
26
scaleMethod: "flex-width",
- renderer: 0, // AUTO
27
+ renderer: AUTO,
28
preferWebGL1: false,
29
depthTest: "z-buffer",
30
subPixel: false,
0 commit comments