Easy to use bevy plugin for packing resources in single file and protect him.
Add to Cargo.toml
:
toml
[dependencies]
bevy_asset_packer = "0.3.0"
In src/main.rs
```rust fn main() { let mut options = AssetBundlingOptions::default(); options.encodefilenames = true; options.compresson = true; options.setencryptionkey("verysecretkey".toowned());
App::new()
.add_plugins(
DefaultPlugins
.build()
.add_before::<bevy::asset::AssetPlugin, _>(BundledAssetIoPlugin::from(options)),
)
.run();
} ```
In build.rs
rust
fn main() {
let mut options = AssetBundlingOptions::default();
options.encode_file_names = true;
options.compress_on = true;
options.set_encryption_key("very_secret_key".to_owned());
AssetBundler::from(options).build().unwrap();
}
You can see examle in example folder.
And its all!!!