For simplicity sake let's say I have a web build with three assets in it: a ground plane/terrain, a box and a light. Lets assume these take 40 seconds to load.
Is it possible to skip/disable the preloader and have the scene appear progressively as the assets are loaded? For example, the ground may have the shortest loading time and appear first in 10 secs, 20 secs later the box is loaded and appears, 10 secs later the light appears etc etc. The difference being here is that instead of watching a preloader count down for 40 seconds, you are watching the scene assets load one after the other. Here is an example of what I'm talking about: [Progressive Loading][1]
How could I achieve something like this?
[1]: http://www.youtube.com/watch?v=2zAb4XxnVMM&t=5m9s
↧