Points mesh plugin for Bevy.
Add the plugin to your app:
```rust use bevy::prelude::; use bevy_points::prelude::;
fn main() { App::new() .add_plugin(PointsPlugin); } ```
```rust
fn setup(
mut commands: Commands,
mut meshes: ResMut
commands.spawn(MaterialMeshBundle {
mesh: meshes.add(
// Mesh can be converted to PointsMesh.
PointsMesh::from(Mesh::from(shape::Icosphere::default()))
.into()
),
material: materials.add(PointsMaterial {
color: Color::BLUE,
opacity: 0.5,
alpha_mode: AlphaMode::Blend,
..Default::default()
}),
..Default::default()
});
}
```
| bevy | bevy_points | | ---- | ------------- | | 0.9 | 0.1 |