Skip to content

Releases: mnmaita/trve_bevy_image

v0.4.0

22 Aug 08:17
9787e70
Compare
Choose a tag to compare

BREAKING CHANGE

It is no longer necessary to prepend the main folder where the assets are located when using ImageAssetList.

If you were doing

app.insert_resource(ImageAssetList::new(
    [
        "img/texture1.png",
        "img/texture2.png",
        "img/texture3.png",
    ]
    .into(),
));

change this to

app.insert_resource(ImageAssetList::new(
    [
        "texture1.png",
        "texture2.png",
        "texture3.png",
    ]
    .into(),
));

The folder will be taken from the ImageAssetFolder Resource.

What's Changed

Full Changelog: v0.3.0...v0.4.0

v0.3.0

12 Aug 11:05
be4a8ae
Compare
Choose a tag to compare

What's Changed

  • Update Bevy version requirement to 0.14 by @mnmaita in #7

Full Changelog: v0.2.0...v0.3.0

v0.2.0

04 Apr 21:30
1b6e3f6
Compare
Choose a tag to compare

What's Changed

  • Add Bevy compatibility table to README.md by @mnmaita in #5
  • Updates bevy version requirement to 0.13 by @mnmaita in #6

Full Changelog: v0.1.0...v0.2.0

v0.1.0

13 Feb 13:57
bc8d78d
Compare
Choose a tag to compare

What's Changed

  • Plugin development by @mnmaita in #1
  • Updates README.md with usage examples by @mnmaita in #3
  • Adds section with Cargo.toml examples by @mnmaita in #4

Full Changelog: https://github.com/mnmaita/trve_bevy_image/commits/v0.1.0