facebookincubator / FBX2glTF

A command-line tool for the conversion of 3D model assets on the FBX file format to the glTF file format.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transparency not working on conversion from fbx to glb (draco compressed) in browser based viewers.

parassrivastav opened this issue · comments

I converted an fbx file (download here) into glb file (resulting file is here) using fgxtogltf npm as follows

const convert = require('fbx2gltf');
convert('Mercedes_Benz_GLE_class.FBX', 'enzo.glb',['-d']).then(
  destPath => {

  },
  error => {

    console.log(error);
  }
);

The resulting glb looks like following in blender
image

But same glb looks like following in donmccurdy or babylonjs
image

How do I get alpha blend transparency to happen in web based browsers?