pub enum MobEffectParticle {
EffectColor {
particle_type: ParticleTypeRef,
regular_alpha: u8,
ambient_alpha: u8,
},
Simple(ParticleTypeRef),
FixedColor {
particle_type: ParticleTypeRef,
color: ArgbColor,
},
}Expand description
The Vanilla particle factory associated with a mob effect.
Variants§
EffectColor
Builds a color payload from the effect color and instance ambience.
Simple(ParticleTypeRef)
Uses a simple particle without a payload.
FixedColor
Uses one fixed ARGB color payload for every instance.
Implementations§
Source§impl MobEffectParticle
impl MobEffectParticle
pub fn create(self, effect_color: RgbColor, ambient: bool) -> ParticleData
Trait Implementations§
Source§impl Clone for MobEffectParticle
impl Clone for MobEffectParticle
Source§fn clone(&self) -> MobEffectParticle
fn clone(&self) -> MobEffectParticle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MobEffectParticle
Auto Trait Implementations§
impl Freeze for MobEffectParticle
impl RefUnwindSafe for MobEffectParticle
impl Send for MobEffectParticle
impl Sync for MobEffectParticle
impl Unpin for MobEffectParticle
impl UnsafeUnpin for MobEffectParticle
impl UnwindSafe for MobEffectParticle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreWraps this value in an
Arc<SyncMutex<>>