Enum bevy_asset::AssetMode
source · pub enum AssetMode {
Unprocessed,
Processed,
}
Variants§
Unprocessed
Loads assets from their AssetSource
’s default AssetReader
without any “preprocessing”.
Processed
Assets will be “pre-processed”. This enables assets to be imported / converted / optimized ahead of time.
Assets will be read from their unprocessed AssetSource
(defaults to the assets
folder),
processed according to their AssetMeta
, and written to their processed AssetSource
(defaults to the imported_assets/Default
folder).
By default, this assumes the processor has already been run. It will load assets from their final processed AssetReader
.
When developing an app, you should enable the asset_processor
cargo feature, which will run the asset processor at startup. This should generally
be used in combination with the file_watcher
cargo feature, which enables hot-reloading of assets that have changed. When both features are enabled,
changes to “original/source assets” will be detected, the asset will be re-processed, and then the final processed asset will be hot-reloaded in the app.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssetMode
impl RefUnwindSafe for AssetMode
impl Send for AssetMode
impl Sync for AssetMode
impl Unpin for AssetMode
impl UnwindSafe for AssetMode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.