Skip to content
Snippets Groups Projects
Commit fd59701e authored by Brian Peiris's avatar Brian Peiris
Browse files

add some delay to allow environments to render

parent 483954dd
No related branches found
No related tags found
No related merge requests found
......@@ -255,8 +255,8 @@ const onReady = async () => {
const initialEnvironmentEl = document.createElement("a-entity");
initialEnvironmentEl.addEventListener("bundleloaded", () => {
uiRoot.setState({ initialEnvironmentLoaded: true });
// Wait a tick so that the environments actually render.
setTimeout(() => scene.renderer.animate(null));
// Wait a tick plus some margin so that the environments actually render.
setTimeout(() => scene.renderer.animate(null), 100);
});
environmentRoot.appendChild(initialEnvironmentEl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment