Is there a way to determine if an object is completely rendered in the THREE.js browser?
I attempted to check this within the animate function:
if(Scene.getObjectByName('object')!= undefined)
{
console.log("rendered");
}
However, I noticed that the rendered model only appears after a few seconds of displaying the console message.