Skip to main content

Crate bevy_aquila

Crate bevy_aquila 

Source
Expand description

§Bevy Aquila

Crates.io Downloads Docs

Aquila integration for the Bevy game engine.

This plugin registers a custom AssetReader for the aquila:// scheme. When a file is requested, the plugin:

  1. Fetches the AssetManifest for the configured version (lazily cached).
  2. Resolves the logical path to a content hash.
  3. 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

bevybevy_aquila
0.170.6

Structs§

AquilaConfig
Configuration for the Aquila Plugin
AquilaPlugin