Jump to content

.manifest file not found error


VidyaBharati
 Share

Recommended Posts

Hello all,

while loading "sample.obj"  file  its giving me an "sample.obj.manifest" not found error.

also for the sample.obj its throwing an unhandled expression error at line 629 in babylon.objFileLoader.js

need to know the reason for these error.

Also when doing incremental loading .obj / .babylon any file already added in that project gives Not Found issue.

Thanks

Link to comment
Share on other sites

Downloaded the 3d model (.obj) which contains .mtl also. My object files doesnt work in playground and i dont know how to upload that .obj to playground site.

so this is my code.

   var loader = new BABYLON.AssetsManager(scene);

   myDoor = loader1.addMeshTask("myDoor", "", "objDoor/", "door.obj");
                myDoor.onSuccess = function(c) {
                    c.loadedMeshes.forEach(function(b) {                    
                            b.position.x = pickResult.pickedPoint.x;
                            b.position.z = pickResult.pickedPoint.z;
                            b.position.y = pickResult.pickedPoint.y;                       
                    });

             };

    loader.onFinish = function() {
        engine.runRenderLoop(function () {
            scene.render();
        });
    };

    loader.load();

While loading door.obj  gives an door.obj.manifest not found error.

 

Link to comment
Share on other sites

  • 2 weeks later...

@VidyaBharati you don't need a manifest, you can ignore that error completely. it doesn't affect anything.

Regarding the " unhandled expression error"..

please copy & paste the error you get in your browser console.. there could be many reasons. 

Also if possible;

create a PG (you can host your obj file from github for free and reference it in the PG via github raw)

Or, a live demo on your own server/website, etc, displaying the error.

we can't help with no real information on the error itself.

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