ckddbs / three-fbx-loader

MIT License
20 stars 14 forks source link

FBXLoader: Binary files not loading correctly #3

Open arunvenu87 opened 6 years ago

arunvenu87 commented 6 years ago

It is missing changes from https://github.com/mrdoob/three.js/pull/12823

I am getting name as "" for binary file when i following code executed

var name = reader.getString( nameLen );

getString: function ( size ) { var data = this.getArrayBuffer ( size ) var s = THREE.LoaderUtils.decodeText( data ); return s; }