Config - Pixelize
import { createGame } from "pixelize-engine";
creategame({
fps: 30,
excludeButtons: ["x"],
pauseKey: "p",
});
Config
is the second parameter to createGame
. It is used to cvonfigure how the Game
runs.
import { createGame } from "pixelize-engine";
creategame({
fps: 30,
excludeButtons: ["x"],
pauseKey: "p",
});
Config
is the second parameter to createGame
. It is used to cvonfigure how the Game
runs.