Struct bevy::asset::AssetServer[]

pub struct AssetServer { /* fields omitted */ }

Loads assets from the filesystem on background threads

Implementations

impl AssetServer

pub fn new<T>(source_io: T, task_pool: TaskPool) -> AssetServer where
    T: AssetIo

pub fn with_boxed_io(
    asset_io: Box<dyn AssetIo + 'static, Global>,
    task_pool: TaskPool
) -> AssetServer

pub fn add_loader<T>(&self, loader: T) where
    T: AssetLoader

pub fn watch_for_changes(&self) -> Result<(), AssetServerError>

pub fn get_handle<T, I>(&self, id: I) -> Handle<T> where
    T: Asset,
    I: Into<HandleId>, 

pub fn get_handle_untyped<I>(&self, id: I) -> HandleUntyped where
    I: Into<HandleId>, 

pub fn get_handle_path<H>(&self, handle: H) -> Option<AssetPath<'_>> where
    H: Into<HandleId>, 

pub fn get_load_state<H>(&self, handle: H) -> LoadState where
    H: Into<HandleId>, 

pub fn get_group_load_state(
    &self,
    handles: impl IntoIterator<Item = HandleId>
) -> LoadState

pub fn load<'a, T, P>(&self, path: P) -> Handle<T> where
    P: Into<AssetPath<'a>>,
    T: Asset

pub fn load_untyped<'a, P>(&self, path: P) -> HandleUntyped where
    P: Into<AssetPath<'a>>, 

pub fn load_folder<P>(
    &self,
    path: P
) -> Result<Vec<HandleUntyped, Global>, AssetServerError> where
    P: AsRef<Path>, 

pub fn free_unused_assets(&self)

Trait Implementations

impl Clone for AssetServer

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,