loader.load( 'path/to/collada.dae', function ( collada ) {
// This function is called, when collada were loaded.
});
But how to call a function, when the textures were loaded?
But how to call a function, when the textures were loaded? |
|||
|
|
|
The ColladaLoader class uses THREE.ImageUtils to load textures on line 3087. The ImageUtils class has the ability to give a callback when the image is loaded, but ColladaLoader doesn't use it. You can create a workaround by traversing the collada scene looking for images. Here's a live demo. The relevant code is:
This prints "image loaded" to the console when each texture is loaded. |
|||
|
|