dragoncoder047
dragoncoder047
wasn't this fixed in #732 or was that a partial PR
So scale is fine now, it's stretch that is bugged. If `letterbox: true` then it works since the canvas's aspect ratio is as specified. `stretch` makes it not be as...
Also, it doesn't obey area scales
here is my suggestion, some would go in the global options like buttons ```js kaplay({ buttons: { jump: { gamepad: ["south", "rstick:up"], // ^^^^^^^^^^^ virtual buttons available here keyboard: ["space"],...
this was addressed in #476... not sure how this didn't get closed with that
wouldn't this also include the HealthComp stuff #520 ?
Doesn't seem to be an easy problem of reversing an audio buffer... https://stackoverflow.com/questions/12484052/how-can-i-reverse-playback-in-web-audio-api-but-keep-a-forward-version-as-well
this is probably good plugin material
quite a messy solution but it works ```ts const parser = new (class extends lips.Parser { override prepare(arg: string) { super.prepare(arg); Object.defineProperty(this, "__lexer__", { value: new (class extends lips.Lexer {...
> ```js > > const value = true; > > value.__is_comment__ = true > > value.__is_comment__ > // undefined > ``` > > If you want to keep information about...