pub struct EntityBuilderClone { /* private fields */ }Expand description
Variant of EntityBuilder that clones components on use
let mut world = World::new();
let mut builder = EntityBuilderClone::new();
builder.add(123).add("abc");
let bundle = builder.build();
let e = world.spawn(&bundle);
let f = world.spawn(&bundle); // `&bundle` can be used many times
assert_eq!(*world.get::<&i32>(e).unwrap(), 123);
assert_eq!(*world.get::<&&str>(e).unwrap(), "abc");
assert_eq!(*world.get::<&i32>(f).unwrap(), 123);
assert_eq!(*world.get::<&&str>(f).unwrap(), "abc");Implementations§
Source§impl EntityBuilderClone
impl EntityBuilderClone
Sourcepub fn add<T: Component + Clone>(&mut self, component: T) -> &mut Self
pub fn add<T: Component + Clone>(&mut self, component: T) -> &mut Self
Add component to the entity.
If the bundle already contains a component of type T, it will be dropped and replaced with
the most recently added one.
Sourcepub fn add_bundle(&mut self, bundle: impl DynamicBundleClone) -> &mut Self
pub fn add_bundle(&mut self, bundle: impl DynamicBundleClone) -> &mut Self
Add all components in bundle to the entity.
If the bundle contains any component which matches the type of a component
already in the EntityBuilder, the newly added component from the bundle
will replace the old component and the old component will be dropped.
Sourcepub fn build(self) -> BuiltEntityClone
pub fn build(self) -> BuiltEntityClone
Convert into a value whose shared references are DynamicBundles suitable for repeated
spawning
Sourcepub fn get<'a, T: ComponentRefShared<'a>>(&'a self) -> Option<T>
pub fn get<'a, T: ComponentRefShared<'a>>(&'a self) -> Option<T>
Borrow a shared reference T to some component type, if it exists
Takes a reference as its type parameter for consistency with
EntityRef::get, even though it cannot be a unique reference
because EntityBuilderClone does not perform dynamic borrow checking.
Sourcepub fn get_mut<'a, T: ComponentRef<'a>>(&'a mut self) -> Option<T>
pub fn get_mut<'a, T: ComponentRef<'a>>(&'a mut self) -> Option<T>
Borrow a shared or unique reference T to some component type, if it exists
Sourcepub fn component_types(&self) -> impl Iterator<Item = TypeId> + '_
pub fn component_types(&self) -> impl Iterator<Item = TypeId> + '_
Enumerate the types of the entity builder’s components
Trait Implementations§
Source§impl Clone for EntityBuilderClone
impl Clone for EntityBuilderClone
Source§fn clone(&self) -> EntityBuilderClone
fn clone(&self) -> EntityBuilderClone
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more