Expand description
§Bevy Aquila
Aquila integration for the Bevy game engine.
This plugin registers a custom AssetReader for the aquila:// scheme. When a file is requested,
the plugin:
- Fetches the
AssetManifestfor the configured version (lazily cached). - Resolves the logical path to a content hash.
- Downloads the binary blob from the server.
§Usage
use bevy::prelude::*;
use bevy_aquila::{AquilaPlugin, AquilaConfig};
App::new()
.add_plugins(AquilaPlugin::new(AquilaConfig {
url: "http://localhost:3000".to_string(),
version: "v1.0".to_string(),
token: None,
}));§Compatibility
| bevy | bevy_aquila |
|---|---|
| 0.17 | 0.6 |
Structs§
- Aquila
Config - Configuration for the Aquila Plugin
- Aquila
Plugin