Andrew Start

Results 62 comments of Andrew Start

Whoops, the `Texture.fromImage()` should have been `Texture.from()`. If you are seeing errors about a `time` property, then one of your behaviors that will end up with a `PropertyList` (`color`, `alpha`,...

You can invite me, and I'll take a look this evening.

For your circle spawn behaviors, `r` has been changed to `radius`. Additionally, `ScaleBehavior` was the only behavior using a `minMult` property that wasn't correctly catching `undefined` values, so you'll want...

It's not something that I have the expertise to implement myself.

`pauseAll()` [suspends](https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/suspend) the WebAudio audio context, so the browser stops whatever processing it normally does for the context.

Each playing audio instance will attach a listener to `Ticker.shared` for an [update method](https://github.com/pixijs/pixi-sound/blob/51fa4470aae995685f97f2ef34194609e3efb451/src/webaudio/WebAudioInstance.ts#L516). Reducing the fps of that ticker will have two effects: 1. Reduce how many `"progress"` events...

For that you'd have to look at the axios documentation. I assume that the library itself works fine in a browser but you'd need to use the browser native data...

Option A: rasterize the vector art as a bitmap inside of Animate. Option B: Create a version of [AnimateGraphics](https://github.com/pixijs/animate/blob/v2.0.5/src/animate/Graphics.ts) that is extends [SmoothGraphics](https://github.com/pixijs/graphics-smooth) instead, and when passing in the Animate...

Are you trying to use the combined output as a standalone animation, or are you integrating the published animations into a larger project? The published files don't care if you...

At some point. I haven't had time for side projects for a while so I haven't been able to look at v8 much yet. I believe that Graphics had a...