Jump to content

Gltf model exported from Blender is always black in Three.js


zed87
 Share

Recommended Posts

I am trying to import in my Three.js project a gltf model exported from Blender.

The problem is that, in Three.js, all models materials are black (color: Color {r: 1, g: 1, b: 1}) while originally the mesh is green.

I find this topic

(http://www.html5gamedevs.com/topic/41196-object-always-exports-black-3dsmax-gltf-export/)

that show how to solve the problem in 3dsmax, but how to solve for blender?

Here my code in Three.js:   

var loader= new THREE.GLTFLoader();
loader.load(
  'http://localhost/planegeometryeditor/meshes/map/firstterrain.gltf', 
  function(gltf) { scene.add(gltf.scene); },
  undefined, 
  function (error) { console.error(error); }
);

 

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