-
-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Description
Description
Not really a feature request, more just a suggestion to consider improving an area of the docs.
In the Replaces Loader with Assets of the v7 migration docs, the example "from" and "to" dont really give a like-for-like comparison. The concept of adding resources to the loader before loading them appears to no longer exist, and the docs doesnt really highlight the alternative approach to use.
I'm assuming that given the old approach of:
import { Loader, Sprite } from 'pixi.js';
const loader = new Loader();
loader.add('background1', 'path/to/assets/background1.jpg');
loader.add('background2', 'path/to/assets/background2.jpg');
loader.load((loader, resources) => {
const image = Sprite.from(resources.background.texture);
});The new approach would be:
import { Assets, Sprite } from 'pixi.js';
const texture1 = await Assets.load('path/to/assets/background1.jpg');
const image1 = Sprite.from(texture1);
const texture2 = await Assets.load('path/to/assets/background2.jpg');
const image2 = Sprite.from(texture2);Is this assumption correct?
If so, I think it would be useful to include this in the docs. If not, then the docs should deffo be improved here as the alternative approach in v7 is not clear.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels