Struct amethyst_assets::PrefabLoaderSystem[][src]

pub struct PrefabLoaderSystem<T> { /* fields omitted */ }

System that load Prefabs for PrefabData T.

Type parameters:

  • T: PrefabData

Trait Implementations

impl<T> Default for PrefabLoaderSystem<T>
[src]

Returns the "default value" for a type. Read more

impl<'a, T> System<'a> for PrefabLoaderSystem<T> where
    T: PrefabData<'a> + Send + Sync + 'static, 
[src]

The resource bundle required to execute this system. Read more

Executes the system with the required system data. Read more

Sets up the Resources using Self::SystemData::setup.

Returns a hint how long the system needs for running. This is used to optimize the way they're executed (might allow more parallelization). Read more

Return the accessor from the [SystemData].

Auto Trait Implementations

impl<T> Send for PrefabLoaderSystem<T> where
    T: Send

impl<T> Sync for PrefabLoaderSystem<T> where
    T: Sync