landgreen 94314f7a59 removed level.fillBG
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();
};
2021-03-31 18:03:08 -07:00
2019-10-22 07:08:09 -07:00
2021-03-31 18:03:08 -07:00
2019-09-30 19:08:55 -07:00
2021-03-31 18:03:08 -07:00
2021-01-02 18:46:14 -08:00
2019-07-11 10:04:58 -07:00
2021-02-05 05:38:08 -08:00
2019-10-09 15:35:56 -07:00
2020-03-16 08:17:34 -07:00
2021-03-30 05:23:56 -07:00
2021-03-31 18:03:08 -07:00

2-d physics rogue-lite platformer shooter

https://landgreen.github.io/sidescroller/

Description
pusheen's n-gon fork
Readme GPL-3.0 29 MiB
Languages
JavaScript 98.7%
CSS 0.8%
HTML 0.5%