afonsolage / bevy_ecss

Bevy crate which uses a subset of CSS to update Bevy ECS components
Apache License 2.0
98 stars 11 forks source link

Fix timing issue that could cause a panic on despawn. #59

Closed seurimas closed 5 months ago

seurimas commented 5 months ago

Despawning an entity with a stylesheet was causing a panic, because the entity no longer existed when certain change detection checks were made. This uses get_entity and assumes that no changes are made if the entity is not retrievable.