CreateJS / PreloadJS

PreloadJS makes preloading assets & getting aggregate progress events easier in JavaScript. It uses XHR2 when available, and falls back to tag-based loading when not.
http://createjs.com/
MIT License
2.87k stars 762 forks source link

Slow Loading Times. #271

Open MirrorTM opened 4 years ago

MirrorTM commented 4 years ago

loading 256 images 100kb +- each takes an unacceptably long time to process, I regard this as an issue cause Pixi.js preloader loads much faster. when i look at the network tab i see that it loads them consequentially , pixi loads asynchronously but keeps the order. is there any way to make preloadjs loader async?

gskinner commented 4 years ago

https://createjs.com/docs/preloadjs/classes/LoadQueue.html#method_setMaxConnections

Sent from my mobile, please excuse typos & brevity.

On Oct 22, 2020, at 1:01 PM, marknoonmn notifications@github.com wrote:

 loading 256 images 100kb +- each takes an unacceptably long time to process, I regard this as an issue cause Pixi.js preloader loads much faster. when i look at the network tab i see that it loads them consequentially , pixi loads asynchronously but keeps the order. is there any way to make preloadjs loader async?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

danzen commented 4 years ago

We just discovered this a month ago and incorporated it! Then we wondered if there was there a reason we don't default to more connections?