diff --git a/crates/bevy_asset/src/http_source.rs b/crates/bevy_asset/src/http_source.rs index 81e0342028..89b8271a4b 100644 --- a/crates/bevy_asset/src/http_source.rs +++ b/crates/bevy_asset/src/http_source.rs @@ -8,6 +8,8 @@ use std::path::{Path, PathBuf}; /// Adds the `http` and `https` asset sources to the app. /// +/// NOTE: Make sure to add this plugin *before* `AssetPlugin` to properly register http asset sources. +/// /// Any asset path that begins with `http` (when the `http` feature is enabled) or `https` (when the /// `https` feature is enabled) will be loaded from the web via `fetch`(wasm) or `ureq`(native). pub struct HttpSourcePlugin;