You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npm i @pixi/node
node -e "require('@pixi/node').Assets.load('https://fastly.jsdelivr.net/gh/dictcp/wangfonts/TrueType/wt071.ttf')"
/home/ulysses/temp/pixi-node-test/node_modules/@pixi/assets/lib/loader/Loader.js:93
throw new Error(`[Loader.load] Failed to load ${url}.
^
Error: [Loader.load] Failed to load https://fastly.jsdelivr.net/gh/dictcp/wangfonts/TrueType/wt071.ttf.
Error: ENOENT: no such file or directory, lstat '/home/ulysses/temp/pixi-node-test/https:'
at /home/ulysses/temp/pixi-node-test/node_modules/@pixi/assets/lib/loader/Loader.js:93:17
at async Promise.all (index 0)
at async Loader.load (/home/ulysses/temp/pixi-node-test/node_modules/@pixi/assets/lib/loader/Loader.js:98:5)
at async AssetsClass._mapLoadToResolve (/home/ulysses/temp/pixi-node-test/node_modules/@pixi/assets/lib/Assets.js:170:26)
at async AssetsClass.load (/home/ulysses/temp/pixi-node-test/node_modules/@pixi/assets/lib/Assets.js:95:17)
Node.js v18.16.0
However, loading from local files is fine:
npm i @pixi/node
wget https://fastly.jsdelivr.net/gh/dictcp/wangfonts/TrueType/wt071.ttf
node -e "require('@pixi/node').Assets.load('wt071.ttf')"
The cause of the bug is because registerFont() can only accept local file paths instead of any HTTP URL.
The text was updated successfully, but these errors were encountered:
npm i @pixi/node node -e "require('@pixi/node').Assets.load('https://fastly.jsdelivr.net/gh/dictcp/wangfonts/TrueType/wt071.ttf')"
However, loading from local files is fine:
npm i @pixi/node wget https://fastly.jsdelivr.net/gh/dictcp/wangfonts/TrueType/wt071.ttf node -e "require('@pixi/node').Assets.load('wt071.ttf')"
The cause of the bug is because registerFont() can only accept local file paths instead of any HTTP URL.
The text was updated successfully, but these errors were encountered: