Ben Randall

Results 42 comments of Ben Randall

TL;DR: As a quick workaround, try using TilemapLayer.skipCull to see if it helps. I'm running into a similar issue when adding a TileMap to a container and then moving the...

Tried out an implementation of `TileMapLayer.cull` that looks like this: ``` cull: function (camera) { if(this.skipCull) { return this.layer.data.flat(); } return this.cullCallback(this.layer, camera, this.culledTiles, this._renderOrder); } ``` And it seems...

@gammafp - Are there any guidelines or requirements around which JS APIs we need to build phaser against? If I get an answer to this then I can go ahead...

The current code appears to accept any boolean-ish value: https://github.com/digitsensitive/astar-typescript/blob/8c955f67d814281c9068d0a371c79a88b8dd84aa/lib/core/grid.ts#L88 0, false, null, undefined should map to unwalkable, everything else should be walkable. But providing a predicate to the config...

I'm unable to get this working at all on Windows despite many attempts to quote it properly. Can someone point out to me if I'm doing something wrong? ``` PS...

Same result as ``` echo '{"Foo":"value1", "Bar-Baz":"value2"}' | jq ".`"Bar-Baz`"" ``` ``` PS C:\Users\veleek> echo '{"Foo":"value1", "Bar-Baz":"value2"}' | jq '."Bar-Baz"' jq: error: Baz/0 is not defined at , line 1:...

Nope neither of those work either. What is the `^` escaping for? I've never seen that for powershell. For reference: The following works in cmd on windows, just to prove...

Grrrr.... literally JUST tried that after finally figuring out the right thing to google and finding [this Stackoverflow question from nine years ago](https://stackoverflow.com/questions/6714165/powershell-stripping-double-quotes-from-command-line-arguments) which very clearly explains the problem and...

Can we get a better description of exactly what this fix does? Would be helpful for reviewing code later.

@LiamAttClarke - Did you ever get any resolution on this. I was running into the same issue and determined that it was due to changing the $HOME directory which resulted...