diff --git a/content/news/037/index.md b/content/news/037/index.md index b55e129d7..e532aa263 100644 --- a/content/news/037/index.md +++ b/content/news/037/index.md @@ -142,6 +142,26 @@ tweens to most operations. [0.11.0]: https://github.com/NiklasEi/bevy_kira_audio/blob/main/CHANGELOG.md#v0110 [0.12.0]: https://github.com/NiklasEi/bevy_kira_audio/blob/main/CHANGELOG.md#v0120 +### [bevy_asset_loader] + +![Configuration of a loading state](loading_state.png) +_Configuration of a loading state_ + +[bevy_asset_loader] by [@nikl_me] is a plugin for [Bevy] apps aiming to +improve a common pattern for asset-loading. The boilerplate required to set up +a loading-state is reduced to a minimum. The plugin is based on storing +asset handles in resources, which makes it easy to use them in any system +across your app. + +The screenshot above shows how a loading state can be added to the Bevy app +in the latest version of the plugin. The update also fixed issues with +configuring the same loading state in different places of your code and enabled +users to define their own dynamic assets. + +[@nikl_me]: https://twitter.com/nikl_me +[bevy_asset_loader]: https://github.com/NiklasEi/bevy_asset_loader/ +[Bevy]: https://bevyengine.org/ + ## Popular Workgroup Issues in Github diff --git a/content/news/037/loading_state.png b/content/news/037/loading_state.png new file mode 100644 index 000000000..75b31a371 Binary files /dev/null and b/content/news/037/loading_state.png differ