Fix typo resaon

This commit is contained in:
Vincent Vandemeulebrouck 2022-06-04 23:23:07 +02:00
parent 70354abacb
commit 3a684c3c54
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export class PixiTMR {
for (const [name, img] of Object.entries(PixiTMR.textures)) {
loader = loader.add(name, img);
}
loader.onLoad.add((error, resaon) => { console.log("ERROR", error, resaon) });
loader.onLoad.add((error, reason) => { console.log("ERROR", error, reason) });
loader.load( (loader, resources) => {
onLoad(loader, resources);
for (let onAnimate of this.callbacksOnAnimate) {