You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shared messages and events via SharedMessageAppExt and SharedEventAppExt. Emitted as LocalOrRemote<M> on both the sender and the receiver to allow shared logic for client-side prediction.
iter_received and iter_sent methods on ClientMessages and ServerMessages to inspect inbound and outbound messages on a channel without consuming them.
Changed
ServerMessages::retain_sent is now public, allowing users to filter outbound messages before the backend drains them.
VisibilityFilter trait and related types moved to the shared::replication::visibility module and no longer feature gated by the server feature.
Replicated is no longer automatically inserted on clients, only Remote. scene::replicate_into will serialize all entities that have either Remote or Replicated.
Rename SendMode::Broadcast into SendTargets::All
Rename SendMode::BroadcastExcept into SendTargets::AllExcept