[][src]Struct macroquad_particles::Emitter

pub struct Emitter {
    pub config: EmitterConfig,
    // some fields omitted
}

Fields

config: EmitterConfig

Implementations

impl Emitter[src]

pub fn new(config: EmitterConfig) -> Emitter[src]

pub fn rebuild_size_curve(&mut self)[src]

pub fn update_particle_mesh(&mut self)[src]

pub fn emit(&mut self, pos: Vec2, n: usize)[src]

Immidiately emit N particles, ignoring "emitting" and "amount" params of EmitterConfig

pub fn draw(&mut self, pos: Vec2)[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.