mirror of https://github.com/Leinnan/rpack.git
Expose RpackAtlasAssetLoaderSettings
This commit is contained in:
parent
dbe4db42b8
commit
8d64b9e639
|
|
@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.3.1]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Exposed `RpackAtlasAssetLoaderSettings`
|
||||||
|
|
||||||
|
|
||||||
## [0.3.0]
|
## [0.3.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_rpack"
|
name = "bevy_rpack"
|
||||||
description = "Bevy plugin with rpack atlas support"
|
description = "Bevy plugin with rpack atlas support"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
repository = "https://github.com/Leinnan/rpack.git"
|
repository = "https://github.com/Leinnan/rpack.git"
|
||||||
homepage = "https://github.com/Leinnan/rpack"
|
homepage = "https://github.com/Leinnan/rpack"
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ pub mod prelude {
|
||||||
/// Provides easy access to `Rpack` asset-related functionality in a Bevy application.
|
/// Provides easy access to `Rpack` asset-related functionality in a Bevy application.
|
||||||
pub use super::plugin::{
|
pub use super::plugin::{
|
||||||
RpackAssetHelper, RpackAssetPlugin, RpackAtlasAsset, RpackAtlasAssetError,
|
RpackAssetHelper, RpackAssetPlugin, RpackAtlasAsset, RpackAtlasAssetError,
|
||||||
RpackAtlasAssetLoader, RpackAtlasError, RpackAtlases,
|
RpackAtlasAssetLoader, RpackAtlasAssetLoaderSettings, RpackAtlasError, RpackAtlases,
|
||||||
};
|
};
|
||||||
/// Re-exports core types for working with texture atlases.
|
/// Re-exports core types for working with texture atlases.
|
||||||
pub use super::{AtlasAsset, AtlasFrame, SerializableRect};
|
pub use super::{AtlasAsset, AtlasFrame, SerializableRect};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue