You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The provided asset source requires processing, and processing has already started, where adding is currently unsupported.
706
710
// TODO: Remove this once it's supported.
707
-
#[error("The provided asset source requires processing, but the asset processor has already started. This is currently unsupported - sources needing to be processed can only be added at startup")]
708
-
SourceIsProcessed,
711
+
#[error("The provided asset source '{0}' requires processing, but the asset processor has already started. This is currently unsupported - sources needing to be processed can only be added at startup")]
712
+
SourceIsProcessed(CowArc<'static,str>),
709
713
/// An asset source with the given name already exists.
710
714
#[error("Asset Source '{0}' already exists")]
711
715
NameInUse(CowArc<'static,str>),
@@ -716,8 +720,8 @@ pub enum AddSourceError {
716
720
pubenumRemoveSourceError{
717
721
/// The requested asset source requires processing, and processing has already started, where removing is currently unsupported.
718
722
// TODO: Remove this once it's supported.
719
-
#[error("The asset source being removed requires processing, but the asset processor has already started. This is currently unsupported - sources needing to be processed can only be removed at startup")]
720
-
SourceIsProcessed,
723
+
#[error("The asset source being removed '{0}' requires processing, but the asset processor has already started. This is currently unsupported - sources needing to be processed can only be removed at startup")]
724
+
SourceIsProcessed(CowArc<'static,str>),
721
725
/// The requested source is missing, so it cannot be removed.
0 commit comments