GLTFLoader: Examples reportedly failing in IE11
See original GitHub issuePer Stack Overflow (https://stackoverflow.com/q/52144252/1314762, https://stackoverflow.com/questions/51558365/how-to-load-gltf-scene-in-threejs-using-ie11), GLTFLoader is reportedly not working in IE11 even when the Promise polyfill is included. Our example pages do not include the polyfill at all, and therefore also do not work.
I think we should:
- Verify Promise polyfill is still the only thing needed to make GLTFLoader work in IE11
- If not, update either the loader or the docs.
- Add the promise polyfill to the existing glTF examples, with an
<!--[if IE]>
block, if we want them to work in IE11.
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (1 by maintainers)
Top Results From Across the Web
Is the gltf loader from three.js incompatible with ie11?
GLTFLoader is compatible with IE11, but requires that you "polyfill" certain features that are missing in IE11. In practice, that means you ...
Read more >GLTFLoader – three.js docs
GLTFLoader. A loader for glTF 2.0 resources. glTF (GL Transmission Format) is an open format specification for efficient delivery and loading of 3D...
Read more >three-gltf-loader - npm
Starting with three.js r103, GLTFLoader is included in the three package itself and installing three-gltf-loader is no longer necessary.
Read more >three-gltf-loader examples - CodeSandbox
Learn how to use three-gltf-loader by viewing and forking example apps that make use of three-gltf-loader on CodeSandbox. 3D dice roll using Three...
Read more >GLTF Model Loader - Three.js Tutorials - sbcode.net
import * as THREE from 'three' import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls' import { GLTFLoader } from ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In this case I vote to close the issue since I’m not aware of that we’ve put polyfills in other examples. Besides, the comprehensive documentation page about
GLTFLoader
already notes the need for a polyfill in context of IE 11.IE 10+ no longer supports conditional comments (such as <!–[if IE]>). IE 11 will ignore conditional comments just like other modern browsers.