wiserim

Results 4 comments of wiserim

Hello, I didn't plan to convert plugin to TypeScript. I'll consider it in the future, when I'll have more free time.

TypeScript typings has been added in version `0.10.5`.

Hello, You can make FOV with use of masks. **Example 1** https://codepen.io/wiserim/pen/pojNmRK ````javascript //create graphics object for mask maskGraphics = scene.add.graphics({ fillStyle: { color: 0xffffff, alpha: 0 }}); //create mask...

Hello, You can cast different rays against different groups of mapped objects. To do so you have to pass array of mapped objects to `Ray.cast()`/`Ray.castCircle()`/`Ray.castCone()` methods. Docs: [Raycaster.Ray.cast()](https://wiserim.github.io/phaser-raycaster/Raycaster.Ray.html#cast__anchor) **Example** Codepen:...