inline_assets!
macro for bundling assets (or the
API can be used directly instead).Works for the latest Bevy commit on GitHub as of 2020-11-02 (f81208ad
); it
does not work with Bevy 0.2.1
from crates.io and it will likely need to be
updated as underlying APIs change at least until the next release of Bevy on
crates.io. See Bevy issue 606
and the linked PRs for discussion of native Bevy support for bundling assets.
shell
cargo add bevy_prototype_inline_assets --git https://github.com/emosenkis/bevy_prototype_inline_assets --branch main
or, in your Cargo.toml
:
toml
bevy = { git = "https://github.com/bevyengine/bevy" }
bevy_prototype_inline_assets = { git = "https://github.com/emosenkis/bevy_prototype_inline_assets", branch = "main" }
``` rust use bevy::asset::{AssetPlugin, LoadState}; use bevy::prelude::*; use bevyprototypeinlineassets::{inlineassets, InlineAssets, InlineAssetsPlugin}; use std::collections::HashMap; use std::path::Path;
fn main() {
let inlineassets = inlineassets![
"assets/image.png",
"assets/font.ttf",
"assets/audio.mp3",
...
];
App::build()
.addresource(inlineassets)
.addplugingroupwith(DefaultPlugins, |group| {
group.addafter::
fn setup(
mut commands: Commands,
inlineassets: Res
fn spawn(
mut commands: Commands,
inlineassethandles: Res