Compare commits
2 commits
8c3631bf62
...
7be7c2959c
Author | SHA1 | Date | |
---|---|---|---|
7be7c2959c | |||
2dddb4a5ea |
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ chrono = { version = "0.4.35", features = ["serde"] }
|
||||||
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
||||||
indexmap = { version = "2.2.6", features = ["rayon"] }
|
indexmap = { version = "2.2.6", features = ["rayon"] }
|
||||||
shaderc = { version = "0.8.3", features = ["build-from-source"] }
|
shaderc = { version = "0.8.3", features = ["build-from-source"] }
|
||||||
rusqlite = { version = "0.33.0", features = ["bundled"] }
|
rusqlite = { version = "0.34.0", features = ["bundled"] }
|
||||||
cgmath = "0.18.0"
|
cgmath = "0.18.0"
|
||||||
http = "1.1.0"
|
http = "1.1.0"
|
||||||
iterchunks = "0.5.0"
|
iterchunks = "0.5.0"
|
||||||
|
|
|
@ -156,7 +156,7 @@ impl Scene {
|
||||||
let now = world.now();
|
let now = world.now();
|
||||||
|
|
||||||
if !particle_system.update(now) {
|
if !particle_system.update(now) {
|
||||||
world.remove_entity(entity)?;
|
world.remove_entity(entity);
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue