[−][src]Struct specs::prelude::LazyUpdate
Lazy updates can be used for world updates
that need to borrow a lot of resources
and as such should better be done at the end.
They work lazily in the sense that they are
dispatched when calling world.maintain()
.
Lazy updates are dispatched in the order that they are requested. Multiple updates sent from one system may be overridden by updates sent from other systems.
Please note that the provided methods take &self
so there's no need to get LazyUpdate
mutably.
This resource is added to the world by default.
Methods
impl LazyUpdate
[src]
pub fn create_entity(&self, ent: &EntitiesRes) -> LazyBuilder
[src]
Creates a new LazyBuilder
which inserts components
using LazyUpdate
. This means that the components won't
be available immediately, but only after a maintain
on World
is performed.
Examples
struct Pos(f32, f32); impl Component for Pos { type Storage = VecStorage<Self>; } let my_entity = lazy.create_entity(&entities).with(Pos(1.0, 3.0)).build();
pub fn insert<C>(&self, e: Entity, c: C) where
C: Component + Send + Sync,
[src]
C: Component + Send + Sync,
Lazily inserts a component for an entity.
Examples
struct Pos(f32, f32); impl Component for Pos { type Storage = VecStorage<Self>; } struct InsertPos; impl<'a> System<'a> for InsertPos { type SystemData = (Entities<'a>, Read<'a, LazyUpdate>); fn run(&mut self, (ent, lazy): Self::SystemData) { let a = ent.create(); lazy.insert(a, Pos(1.0, 1.0)); } }
pub fn insert_all<C, I>(&self, iter: I) where
C: Component + Send + Sync,
I: IntoIterator<Item = (Entity, C)> + Send + Sync + 'static,
[src]
C: Component + Send + Sync,
I: IntoIterator<Item = (Entity, C)> + Send + Sync + 'static,
Lazily inserts components for entities.
Examples
struct Pos(f32, f32); impl Component for Pos { type Storage = VecStorage<Self>; } struct InsertPos; impl<'a> System<'a> for InsertPos { type SystemData = (Entities<'a>, Read<'a, LazyUpdate>); fn run(&mut self, (ent, lazy): Self::SystemData) { let a = ent.create(); let b = ent.create(); lazy.insert_all(vec![(a, Pos(3.0, 1.0)), (b, Pos(0.0, 4.0))]); } }
pub fn remove<C>(&self, e: Entity) where
C: Component + Send + Sync,
[src]
C: Component + Send + Sync,
Lazily removes a component.
Examples
struct Pos; impl Component for Pos { type Storage = VecStorage<Self>; } struct RemovePos; impl<'a> System<'a> for RemovePos { type SystemData = (Entities<'a>, Read<'a, LazyUpdate>); fn run(&mut self, (ent, lazy): Self::SystemData) { for entity in ent.join() { lazy.remove::<Pos>(entity); } } }
pub fn exec<F>(&self, f: F) where
F: FnOnce(&World) + 'static + Send + Sync,
[src]
F: FnOnce(&World) + 'static + Send + Sync,
Lazily executes a closure with world access.
Examples
struct Pos; impl Component for Pos { type Storage = VecStorage<Self>; } struct Execution; impl<'a> System<'a> for Execution { type SystemData = (Entities<'a>, Read<'a, LazyUpdate>); fn run(&mut self, (ent, lazy): Self::SystemData) { for entity in ent.join() { lazy.exec(move |world| { if world.is_alive(entity) { println!("Entity {:?} is alive.", entity); } }); } } }
pub fn exec_mut<F>(&self, f: F) where
F: FnOnce(&mut World) + 'static + Send + Sync,
[src]
F: FnOnce(&mut World) + 'static + Send + Sync,
Lazily executes a closure with mutable world access.
This can be used to add a resource to the World
from a system.
Examples
struct Sys; impl<'a> System<'a> for Sys { type SystemData = (Entities<'a>, Read<'a, LazyUpdate>); fn run(&mut self, (ent, lazy): Self::SystemData) { for entity in ent.join() { lazy.exec_mut(move |world| { // complete extermination! world.delete_all(); }); } } }
Trait Implementations
impl Drop for LazyUpdate
[src]
impl Default for LazyUpdate
[src]
Auto Trait Implementations
impl Unpin for LazyUpdate
impl Sync for LazyUpdate
impl Send for LazyUpdate
impl !UnwindSafe for LazyUpdate
impl !RefUnwindSafe for LazyUpdate
Blanket Implementations
impl<T> TryDefault for T where
T: Default,
[src]
T: Default,
fn try_default() -> Result<T, String>
[src]
fn unwrap_default() -> Self
[src]
Calls try_default
and panics on an error case.
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Resource for T where
T: Any + Send + Sync,
[src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any,
[src]
T: Any,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Event for T where
T: Send + Sync + 'static,
[src]
T: Send + Sync + 'static,