Skip to content

Commit

Permalink
Version 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
abnormalbrain committed Nov 14, 2022
1 parent d6ed76d commit 228b22f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_particle_systems"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.65"
authors = ["Abnormal Brain Studios"]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use bevy_particle_systems::*;
fn spawn_particle_system(mut commands: Commands, asset_server: Res<AssetServer>) {
commands
// Add the bundle specifying the particle system itself.
.spawn_bundle(ParticleSystemBundle {
.spawn(ParticleSystemBundle {
particle_system: ParticleSystem {
max_particles: 10_000,
default_sprite: asset_server.load("my_particle.png"),
Expand All @@ -76,5 +76,6 @@ fn spawn_particle_system(mut commands: Commands, asset_server: Res<AssetServer>)

|`bevy_particle_systems`|`bevy`|
|:--|:--|
|0.6|0.9|
|0.5|0.8|
|0.4|0.7|

0 comments on commit 228b22f

Please sign in to comment.