diff --git a/crates/bevy_asset/src/lib.rs b/crates/bevy_asset/src/lib.rs index 291e18b43b..8787d604cc 100644 --- a/crates/bevy_asset/src/lib.rs +++ b/crates/bevy_asset/src/lib.rs @@ -243,6 +243,9 @@ pub trait AssetApp { /// Registers the given `processor` in the [`App`]'s [`AssetProcessor`]. fn register_asset_processor(&mut self, processor: P) -> &mut Self; /// Registers the given [`AssetSourceBuilder`] with the given `id`. + /// + /// Note that asset sources must be registered before adding [`AssetPlugin`] to your application, + /// since registered asset sources are built at that point and not after. fn register_asset_source( &mut self, id: impl Into>,