Dear Wingnut
Your example is better, thank you. and I have a might simple question here:
Babylonjs has the following code: (sorry for not remembering exact syntax)
screenloader.importMesh(
…
success_callback(),
progress_callback( currentNumber, TotalNumber),
error_callback(
…
)
so, is it possible to show the exact progress percentage?
with computing out the currentNumber/TotalNumber offered by progress_callback)
I mean in your line#27 this._loadingTextDiv.innerHTML = this._loadingText;
can you please tell how to use this._loadingText to show exact progress percentage ?
thanks any way.