Struct macroquad_particles::Emitter[][src]

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]

Immediately emit N particles, ignoring “emitting” and “amount” params of EmitterConfig

pub fn setup_render_pass(&mut self, quad_gl: &QuadGl, ctx: &mut Context)[src]

pub fn end_render_pass(&mut self, quad_gl: &QuadGl, ctx: &mut Context)[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Emitter

impl Send for Emitter

impl Sync for Emitter

impl Unpin for Emitter

impl UnwindSafe for Emitter

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.