Skip to content

Bevy Replicon 0.41.0

Choose a tag to compare

@Shatur Shatur released this 24 Jun 17:36
· 4 commits to master since this release
5a25099

Added

  • Diff-based replication for components via replicate_diff.
  • AllExcept filter scope and VisibilityScope::AllExcept as a counterpart to Components. When a VisibilityFilter denies visibility, every component except the listed ones is hidden. Useful for replicating a stripped-down entity (e.g. only its transform and light) to clients outside its full visibility range.
  • ReplicationStorage resource for storing arbitrary serialization/deserialization state.
  • SerializeCtx::entity and WriteCtx::entity with the current entity.

Changed

  • Update to Bevy 0.19.
  • DeferredEntity::flush now consumes the entity.
  • Rename scene module and feature into world_serialization.
  • Rename DeferredChanges into EntityScratch.