Releases: gltf-rs/gltf
Releases · gltf-rs/gltf
Version 0.9.3
2017-10-28
Fixed
gltf_utils::PrimitiveIterators::joints_u16
implementation.
Version 0.9.2
Version 0.9.1
Notable changes
- New
scene::Transform
type - The
Node::matrix/translation/rotation/scale
functions have been deprecated.
See CHANGELOG for more details.
Version 0.9.0
See CHANGELOG for details.
Version 0.8.6
See CHANGELOG for details.
Version 0.7.0
See CHANGELOG for details.
Version 0.6.1
This removes the Send + Sync
requirement on the Source
trait.
Version 0.6.0
Changelog
0.6.0 (15/07/17)
- Added the wrapper interface.
- Added the
Source
trait, which allows for customizing the import process. - Added the reference
Source
trait implementation, namelyFromPath
, that can
read from the file system and decode embedded base64 data URIs. - Added support for binary glTF.
- Added the
Validate
trait, which validates glTF JSON metadata. - Added the
Import
struct which drives the asynchronous loading of glTF data. - Implemented "poor man's zero-copy deserialization".
- Moved all extension data structures into a new
extensions
module. - Removed the
v1
module. - Made the
Get
trait behave the same as theTryGet
trait. - Removed the
TryGet
trait.