18 unstable releases (8 breaking)

0.10.2 Mar 17, 2024
0.10.0 Feb 18, 2024
0.9.1 Nov 13, 2023
0.8.0 Jul 9, 2023
0.2.1 Jan 16, 2022

#123 in Game dev

Download history 635/week @ 2024-01-22 656/week @ 2024-01-29 575/week @ 2024-02-05 538/week @ 2024-02-12 1000/week @ 2024-02-19 841/week @ 2024-02-26 967/week @ 2024-03-04 1460/week @ 2024-03-11 1019/week @ 2024-03-18 861/week @ 2024-03-25 962/week @ 2024-04-01 694/week @ 2024-04-08 974/week @ 2024-04-15 1019/week @ 2024-04-22 648/week @ 2024-04-29 882/week @ 2024-05-06

3,577 downloads per month
Used in 4 crates

MIT/Apache

27KB
516 lines

Bevy Embedded Assets

MIT/Apache 2.0 Realease Doc Crate Bevy Tracking CI

Embed your asset folder inside your binary for easier releases.

use bevy::prelude::*;
use bevy_embedded_assets::EmbeddedAssetPlugin;

fn main() {
    App::new().add_plugins((EmbeddedAssetPlugin::default(), DefaultPlugins));
}

EmbeddedAssetPlugin has three modes:

  • PluginMode::AutoLoad will embed the asset folder and make it available through the embedded:// source
  • PluginMode::ReplaceDefault will embed the asset folder and make it available through the default source
  • PluginMode::ReplaceAndFallback will embed the asset folder and make it available through the default source. If a fail is not found at runtime, it fallback to the default source for the current platform

Bevy Compatibility

Bevy bevy_embedded_assets
main main
0.13 0.10
0.12 0.9
0.11 0.8
0.10 0.7
0.9 0.6
0.8 0.4
0.7 0.3
0.6 0.2
0.5 0.1

Dependencies

~21–60MB
~1M SLoC