Jump to content

Problems with importing models


Ploopploop
 Share

Recommended Posts

I want to import my .babylon model with animation into my code but the model didn't appear and if it does appear, the animation won't work.

This is the code 

var human = new BABYLON.Mesh.CreateBox("human", 1.0, scene);
        human.isVisible = false;
        human.position.y = 0;
        human.position.x = 0;

        BABYLON.SceneLoader.ImportMesh("", "models/Vanquish/Human/", "Humans.babylon", scene, function(newMeshes, particleSystems, skeletons){
            skeleton = skeletons[0];
            skeletonMesh = newMeshes[0];
            scene.beginAnimation(skeleton, 0, 20, false, 2.5);
            for(i = 0; i < newMeshes.length; i++){
                newMeshes.parent = human;

            }
        });

Link to comment
Share on other sites

Hiya PP, welcome to the forum.

See this BJS playground scene?

https://www.babylonjs-playground.com/#WMW8#8

Can you edit that (as often as you like) and make new saves (as often as you like)... and somehow get your Humans.babylon (or some other SMALL/SIMPLE .babylon file... to load-in from a public/github URL/location?

That would make it easier for us to help.  I hope it is a simple/basic scene... something small to troubleshoot the mesh loading.  A small .babylon file is good to start-with, using simple and short animation.  Please try to provide these things.  Thank you.

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...