pancelor
pancelor
This happens to me often enough: 1. I open a p8 cart in pico8 2. I open the same cart in Tiled 3. I edit some non-map data in pico8...
This is essentially the same code as #924, with this additional code to make sure `deltatime` is accurate ```js var prevTimestamp; function loop(timestamp) { var deltatime = 0 if (prevTimestamp...
A comment from a [puzzlescript dev](https://le-slo.itch.io/not-that-common-egg-eater-snake) that I just stumbled across on discord: > It's weird that in firefox it's like 3x times slower, hard to nail the gamefeel for...
Reproduction steps: 1. make a new project in LDTK 1.3.3 2. add a tile layer and an entity layer (I also added a tile layer but I suppose that's irrelevant)...
the code's a bit of a mess; it was never meant to last longer than the one game I made it for. but this is the basics of how I...
Fixes two small bugs with the window sizes when fullscreening; see commits for details
"Now it's time for C" or "Now it's C's turn" might be other options
Hi! I'm looking for a pico8 LSP for Sublime Text and I see this the README: > This extension uses the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/), so while it's mainly made for...
This is maybe more of an "fyi" than an issue, but here's two parser bugs I found recently: ## `if (false)?1 --hi` this causes issues on the next line: https://www.lexaloffle.com/bbs/?tid=142148...
This is going to be a bit of a rambling issue; sorry about that. I'm confused about what exactly the problem is here, there's too many things going on that...