-
Notifications
You must be signed in to change notification settings - Fork 607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requesting support for gltf, glb #48
Comments
I know well gltf, I support it in all my engines. The problem is that WebGLStudio asumes that a resource is a single file, and gltf are two files (json and bin) so supporting it will imply a big reestructuring of the code, and I dont have much time now. Is something I have in my TODO list from long time ago. |
Is that same for GLB as well? AFAIK, it is a single file however it is a binary format. |
Is there any javascript library to parse glb? |
I understand. I will also look for one and share it with you. But, the importance of a light weight file format is significant for supporting WebGL on browsers and mobile phones. Thank you @jagenjo |
@jagenjo I found this GLTFLoader in ThreeJS. I am not sure how much helpful this will be but still sharing. |
@jagenjo here are a few glTF/glb parsers that you may refer: |
@jagenjo support for glb would be huge and I think it would be sufficient to only support glb instead of glb and glTF. |
I've noticed that you support obj files only for 3D models. However, gltf and glb are support widely for WebGL. Compared to these, an obj file is heavier as well. Hence, consider supporting gltf and glb file formats as well.
Alternatively, an option to convert obj to light weight gltf/glb files. That way at least the published version will have light weight gltf and glb files.
The text was updated successfully, but these errors were encountered: