Robbe Clerckx

Results 5 issues of Robbe Clerckx

When only empty object layers are added in Tiled, this is an empty object instead of an empty array. https://github.com/photonstorm/phaser/blob/1a086fc57c8faa53885fd1a4e20d617b958d3677/src/tilemaps/Tilemap.js#L260 Suggested solution: ```js this.objects = Array.isArray(mapData.objects) ? mapData.objects : [];...

🗺️ Tilemap

When corner cutting is enabled it was still possible to cut corners of points to avoid. Checking `pointsToAvoid` in `isTileWalkable` prevents cutting through these corners. Not 100% sure if this...

## Scenario 1. successfully connect to BLE device with security 2 2. start scanning for wifi devices 3. `completionHandler` is called twice a. throws `scanRequestError SwiftProtobuf.BinaryDecodingError malformedProtobuf` with empty wifilist...

Sometimes it easier during dev to pass another bundleId to siren to test the checks. (Different scheme for dev builds.) Call happens here: https://github.com/SudoPlz/sp-react-native-in-app-updates/blob/154057630d77f437d6edbd74fcc2009c83981ab6/src/InAppUpdates.ios.ts#L30 Especially since it is added to...

Adds support for the `value` property on list items to set the start value of the list. Will look back to previous items to check for start values. (A single...