Struct hecs::CommandBuffer

source ·
pub struct CommandBuffer { /* private fields */ }
Expand description

Records operations for future application to a World

Useful when operations cannot be applied directly due to ordering concerns or borrow checking.

let mut world = World::new();
let entity = world.reserve_entity();
let mut cmd = CommandBuffer::new();
cmd.insert(entity, (true, 42));
cmd.run_on(&mut world); // cmd can now be reused
assert_eq!(*world.get::<&i32>(entity).unwrap(), 42);

Implementations§

source§

impl CommandBuffer

source

pub fn new() -> Self

Create an empty command buffer

source

pub fn insert(&mut self, entity: Entity, components: impl DynamicBundle)

Add components from bundle to entity, if it exists

Pairs well with World::reserve_entity to spawn entities with a known handle.

When inserting a single component, see insert_one for convenience.

source

pub fn insert_one(&mut self, entity: Entity, component: impl Component)

Add component to entity, if the entity exists

See insert.

source

pub fn remove<T: Bundle + 'static>(&mut self, ent: Entity)

Remove components from entity if they exist

When removing a single component, see remove_one for convenience.

source

pub fn remove_one<T: Component>(&mut self, ent: Entity)

Remove a component from entity if it exists

See remove.

source

pub fn despawn(&mut self, entity: Entity)

Despawn entity from World

source

pub fn spawn(&mut self, components: impl DynamicBundle)

Spawn a new entity with components

If the Entity is needed immediately, consider combining World::reserve_entity with insert instead.

source

pub fn run_on(&mut self, world: &mut World)

Run recorded commands on world, clearing the command buffer

source

pub fn clear(&mut self)

Drop all recorded commands

Trait Implementations§

source§

impl Default for CommandBuffer

source§

fn default() -> Self

Create an empty buffer

source§

impl Drop for CommandBuffer

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Send for CommandBuffer

source§

impl Sync for CommandBuffer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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