qmuntal / gltf

Go library for encoding glTF 2.0 files
https://www.khronos.org/gltf/
BSD 2-Clause "Simplified" License
241 stars 32 forks source link

Auto embed resources without URI when encoding #54

Closed qmuntal closed 2 years ago

qmuntal commented 2 years ago

This PR makes gltf.Encoder and gltf.Save easier to use when saving non-binary glTF files. The new behavior auto-embed (aka base64-encode) buffers which contain data but have no URI. Previous behavior was to error out.

Closes #53 Updates #45 Updates #49