Matt Karl
Matt Karl
Because `.ico` is not built in, you need to specify a loadParser: ```ts let texture = await PIXI.Assets.load({ src: `https://icons.duckduckgo.com/ip3/cnn.com.ico`, loadParser: "loadTextures" }); let sprite = new PIXI.Sprite(texture); ```
Thanks for reporting and for the example @NetheriteJam, someone will take a look at this soon.
We typically merge every 1-2 weeks before making a release. You can consider this done. If you'd like, try looking at other issues, welcome more PRs!
https://github.com/pixijs/pixijs/blob/dev/src/rendering/renderers/shared/texture/Texture.ts
Summoning @dev7355608
This is where `preferCreateImageBitmap` is used in the code to load textures: https://github.com/pixijs/pixijs/blob/08d20e09236c64a4b380fbf709574aa18b4d7bcc/src/assets/loader/parsers/textures/loadTextures.ts#L125-L135 ### preferWorkers: true Where the worker loads the image using `fetch`: https://github.com/pixijs/pixijs/blob/08d20e09236c64a4b380fbf709574aa18b4d7bcc/src/assets/loader/workers/loadImageBitmap.worker.ts#L10 ### preferWorkers: false Alternatively, where...
We need a test for this
You should pause the ticker when change page visibility. Pixi doesn't do this for you. What I suspect is happening is that when you navigate back your Ticker sends a...
This is great! Love all your thinking here and rationale. What about having to instantiate the Input class instead of auto-adding it? I know Mat said that instance objects members...
@dev7355608 this will probably be opt-in for v8, default in v9. @Zyie was careful not to overlap the APIs with events.