Graphics Reference
In-Depth Information
Loading models asynchronously with
progress
In the previous section, the Loading models asynchronously recipe, we loaded a mod-
el asynchronously without providing feedback about the progress. In this recipe, we'll
explain how you can add progress feedback to that scenario.
Getting started
Before you get started with this recipe, make sure that you've walked through the
steps explained in the Getting ready section of the Loading textures asynchronously
recipe. In the following section, we'll reference the JavaScript callbacks defined in the
Getting ready section of that recipe.
How to do it...
1. To load models and to also show progress, we have to use a different method
apart from THREE.JSONLoader . If we use the loadAjaxJSON function, we
can also specify a progress callback instead of just the load callback:
function loadModelWithProgress(model) {
var jsonLoader = new
THREE.JSONLoader();
jsonLoader.loadAjaxJSON(jsonLoader,
model, onLoadCallback, null,
onProgressCallback);
}
2. If we now load the same model as the previous one, we see the loading pro-
gress as follows:
Search WWH ::




Custom Search