Andrew Start

Results 62 comments of Andrew Start

No, when the scale (or resolution) is not an integer value, you still have the lines.

You could try using something like https://github.com/timocov/dts-bundle-generator, although as PixiJS is a somewhat complicated project it may be too fiddly for the bundler. On Fri, Jan 15, 2021, 9:46 AM...

You don't even need to override `containsPoint` - you can just assign an object to `yourGraphics.hitArea` on your graphic that has a `contains()` method. All it does is take `(x,...

It's not any particular dependency, but sometimes when upgrading you might end up with an incomplete update, where you have a version mixture (of 6.22 and 6.4.2 in your case)...

Hmm, it seems like a case where the canvas is visible before the interaction plugin is initialized - the browser already dispatched the `mouseover` event when there was no listener...

Yeah, the easing here really needs an overhaul, including a tool that isn't external. It's a long term goal, but in the short term I should be able to make...

While I have learned more about bezier curves in the course of my work, I haven't had the time to make any changes - the whole editor needs a rewrite...

Hmm, `Particle.emitter` would only be null if the particle (and emitter) had been destroyed. That process should correctly clean everything up, and it looks like you have reasonable safeguards in...

Each instance of `Sound` has an `isPlaying` property: https://pixijs.io/pixi-sound/docs/PIXI.sound.Sound.html#isPlaying

If your project is built so that `pixi-sound` has its own copy of the `@pixi/loaders` dependency instead of sharing the one from `pixi.js` that you are loading with (if you...