Skip to content

Releases: gltf-rs/gltf

Version 0.9.3

27 Jul 19:38
Compare
Choose a tag to compare

2017-10-28

Fixed

  • gltf_utils::PrimitiveIterators::joints_u16 implementation.

Version 0.9.2

27 Jul 19:31
Compare
Choose a tag to compare

2017-09-10

Fixed

  • Incorrect implementation of Transform::decomposed (issue #99)

Version 0.9.1

07 Sep 00:14
Compare
Choose a tag to compare

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

27 Aug 09:55
Compare
Choose a tag to compare

See CHANGELOG for details.

Version 0.8.6

26 Aug 21:34
Compare
Choose a tag to compare

See CHANGELOG for details.

Version 0.7.0

28 Jul 16:57
Compare
Choose a tag to compare

See CHANGELOG for details.

Version 0.6.1

15 Jul 13:05
Compare
Choose a tag to compare

This removes the Send + Sync requirement on the Source trait.

Version 0.6.0

15 Jul 11:45
Compare
Choose a tag to compare

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, namely FromPath, 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 the TryGet trait.
  • Removed the TryGet trait.