inline_assets!
macro for bundling assets (or the
API can be used directly instead).Works for the Bevy 0.3.0. See Bevy issue 606 and the linked PRs for discussion of native Bevy support for bundling assets.
shell
cargo add bevy_prototype_inline_assets
or, in your Cargo.toml
:
toml
bevy_prototype_inline_assets = "0.1.0"
``` 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)
.addpluginswith(DefaultPlugins, |group| {
group.addafter::
fn setup(
mut commands: Commands,
inlineassets: Res
fn spawn(
mut commands: Commands,
inlineassethandles: Res