xeolabs / xeogl

A WebGL-based 3D engine for technical visualization. Not actively maintained.
http://xeogl.org
Other
1.14k stars 264 forks source link

.gltf loading is not working in IE 11 #220

Closed mkginfo closed 6 years ago

mkginfo commented 6 years ago
Description of the problem

.gltf loading is not working in IE 11 http://xeogl.org/examples/#picking_canvas_pickEntity ...

Browser
xeolabs commented 6 years ago

Any errors in the JS console?

mkginfo commented 6 years ago

Yes. error-load

mkginfo commented 6 years ago

I am already find a solution. responseType set after open() method. var request = new XMLHttpRequest(); request.open('GET', ctx.basePath + url, true); request.responseType = 'arraybuffer';

mkginfo commented 6 years ago

Fixed for IE11.