Enum ff_particles::ParticleShape
source · [−]pub enum ParticleShape {
Rectangle,
Circle {
subdivisions: u32,
},
CustomMesh {
vertices: Vec<f32>,
indices: Vec<u16>,
},
}
Variants
Rectangle
Circle
Fields
subdivisions: u32
CustomMesh
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ParticleShape
impl Send for ParticleShape
impl Sync for ParticleShape
impl Unpin for ParticleShape
impl UnwindSafe for ParticleShape
Blanket Implementations
Mutably borrows from an owned value. Read more