94314f7a59c02d4a289cbc7a945a3feef8a09e99
added new graphics to several maps
to level developers: level.fillBG and level.fill no longer work,
you should draw backgrounds directly in level.custom like this:
level.custom = () => {
ctx.fillStyle = "rgba(0,255,255,0.1)";
ctx.fillRect(6400, -550, 300, 350);
level.playerExitCheck();
level.exit.draw();
level.enter.draw();
};
2-d physics rogue-lite platformer shooter
Languages
JavaScript
98.7%
CSS
0.8%
HTML
0.5%