Jump to content

[SOLVED] Asynchronous scene loading not working


WhoAteDaCake
 Share

Recommended Posts

Code:

https://pastebin.com/zE0zhn7K

So if you try to load a scene asynchronously, do something else, start the engine using that scene, The scene will just show an empty space.

However, if you take a look at the code above, go to

async function createScene(config) {
  const { textureModifier } = config;
  const { height, width, color } = config;

  const scene = new Scene(config.engine);
  await importScene(config.mesh, scene);

And comment 'importScene' line, the go to

  async function run() {
    // await importScene(config.mesh, scene.internal);
    engine.runRenderLoop(() => scene.render());
    // engine.runRenderLoop(() => console.log('test'));
  }

And uncomment 'importScene' here, it works fine.

I've included a .babylon file below.

foot.babylon

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...