A glTF model viewer (source code included)

Hello,

I thought I’d share this simple application I’ve built to test glTF models and their orientation: https://github.com/virtualgis/gltfviewer

Models are read via HTML5 File API, so it’s fast. No files are ever uploaded to a server.

While I’m at it, is there a way to override the glTF shaders in Cesium (or add more lights to the scene)? Currently the models are not evenly lit. See the bottom right part of the duck model: https://cloud.githubusercontent.com/assets/1951843/25558026/4e9f3404-2cec-11e7-8210-0d9931f6856a.png

Hi Piero,

That looks like an awesome tool! Thank you so much for sharing!

For now, Cesium doesn’t really mess with the shaders of the glTFs that come in, unless the model is using the KHR_materials_common extension in which case Cesium must generate one. So the answer would probably be to provide a text box to edit the shader, then re-load the glTF. Support for more scene lights is currently on our long term road map.

Keep making awesome graphics tools! It’s cool demos and tools like these which really make Cesium shine as a platform. =)

Thanks,

  • Rachel

Hey Rachel,

Thanks for the reply! I’ll consider adding a shortcut to change the light position then.

-Piero