bevy_http 0.2.0

Bevy HTTP asset loader plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# http loader for bevy

adds the ability to load assets from http and https urls

working on merging into bevy

## usage

```rust ignore 
fn setup(mut state: ResMut<State>, asset_server: Res<AssetServer>) {
    state.handle = asset_server.load("remote://icon.png");
}
```