A particle system plugin for bevy
Currently sprite based and focused on 2D.
The above was captured running a release build of the basic
example, cargo run --example basic --release
, and ran at 140-150 FPS on a
2019 Intel i9 MacBook Pro, rendering about 10k particles.
INFO bevy diagnostic: frame_time : 0.006995s (avg 0.006966s)
INFO bevy diagnostic: fps : 142.956068 (avg 143.654887)
INFO bevy diagnostic: entity_count : 10132.000000 (avg 10149.350000)
ParticleSystemPlugin
] plugin.```rust use bevy::prelude::*; use bevyparticlesystems::ParticleSystemPlugin;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(ParticleSystemPlugin::default()) // <-- Add the plugin // ... .addstartupsystem(spawnparticlesystem) .run(); }
fn spawnparticlesystem() { /* ... */ } ```
fn spawnparticlesystem(mut commands: Commands, assetserver: Res
|bevy_particle_systems
|bevy
|
|:--|:--|
|0.5|0.8|
|0.4|0.7|