[][src]Struct amethyst_utils::removal::Removal

pub struct Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
{ /* fields omitted */ }

A marker Component used to remove entities and clean up your scene. The generic parameter I is the type of id you want to use. Generally an int or an enum.

Example


#[derive(Clone, Debug, PartialEq)]
enum RemovalId {
    Something,
    Something2,
}

let _entity1 = world.create_entity().with(Removal::new(RemovalId::Something)).build();
let _entity2 = world.create_entity().with(Removal::new(RemovalId::Something2)).build();

// Remove all entities with the RemovalId value of Something.
exec_removal(&world.entities(), &world.read_storage(), RemovalId::Something);

// Force the world to be up to date. This is normally called automatically at the end of the
// frame by amethyst.
world.maintain();

// Count entities remaining in the world.
assert_eq!((&*world.entities(),).join().count(), 1);

Methods

impl<I> Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
[src]

pub fn new(id: I) -> Self[src]

Creates a new Removal component with the specified id.

Trait Implementations

impl<I: Clone> Clone for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<I: Debug> Debug for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
[src]

impl<I> Serialize for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static,
    I: Serialize
[src]

impl<'de, I> Deserialize<'de> for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static,
    I: Deserialize<'de>, 
[src]

impl<'pfd, I> PrefabData<'pfd> for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
[src]

type SystemData = WriteStorage<'pfd, Removal<I>>

SystemData needed to perform the load

type Result = ()

The result type returned by the load operation

fn load_sub_assets(
    &mut self,
    _progress: &mut ProgressCounter,
    _system_data: &mut Self::SystemData
) -> Result<bool, Error>
[src]

Trigger asset loading for any sub assets. Read more

impl<I> Component for Removal<I> where
    I: Debug + Clone + Send + Sync + 'static, 
[src]

type Storage = DenseVecStorage<Self>

Associated storage type for this component.

Auto Trait Implementations

impl<I> Unpin for Removal<I> where
    I: Unpin

impl<I> Sync for Removal<I>

impl<I> Send for Removal<I>

impl<I> UnwindSafe for Removal<I> where
    I: UnwindSafe

impl<I> RefUnwindSafe for Removal<I> where
    I: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

impl<T> Erased for T[src]

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.