Fails to load Monster and Duck glTF models in example
See original GitHub issueDescription of the problem
Fails to load Monster and Duck glTF models in https://threejs.org/examples/webgl_loader_gltf2.html example because of 404 error.
The root issue seems first letters of their file/directory names in gh-pages
branch are lower case, like
- gh-pages:
examples/models/gltf/monster/glTF/monster.gltf
- master:
examples/models/gltf/Monster/glTF/Monster.gltf
See
- https://github.com/mrdoob/three.js/tree/gh-pages/examples/models/gltf
- https://github.com/mrdoob/three.js/tree/master/examples/models/gltf
- https://github.com/mrdoob/three.js/tree/dev/examples/models/gltf
Three.js version
- Dev
- r86
- …
Browser
- All of them
- Chrome
- Firefox
- Internet Explorer
OS
- All of them
- Windows
- macOS
- Linux
- Android
- iOS
Hardware Requirements (graphics card, VR Device, …)
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Unable to load GLTF object - Stack Overflow
First you can download the free 3d model gltf file from sketchfab and then convert it into glb format using this website.
Read more >pygltflib - PyPI
Python library for reading, writing and managing 3D objects in the Khronos Group gltf and gltf2 formats.
Read more >GLTF Files - ARENA Documentation
GLTF Files. Here are some notes to help you convert GLTF models used in the ARENA. Sketchfab. Sketchfab GLTF models don't always come...
Read more >gltf-model - A-Frame
The gltf-model component loads a 3D model using a glTF ( .gltf or .glb ) file. Note that glTF is a fairly new...
Read more >alteous/gltf - Gitter
@udoprog It's your choice. @tomaka was working on a glTF vulkano example a little while ago. The example is outdated now but it...
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 Free
Top 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
Assuming
gh-pages
is published by copy/pasting from the master or dev branch on each release, the cause is probably this Git issue. Copy/pastes on case-insensitive filesystems (like macOS) are ignored by Git unless you force it to see them.Since it’s OK on the other branches, we can fix it manually on
gh-pages
and it will stay correct after that. Opened #11631.Ah, right. The files in
gh-pages
are glTF 2.0, so #11441 isn’t missing. Sorry I’ve messed up.