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
Using the Bevy adapter crates, right now replication is enabled/disabled by calling commands.entity(entity).enable_replication(&mut client) or commands.entity(entity).disable_replication(&mut server) .. It may be more ergonomic to just insert a Marker Component in order to begin/end replication.
What should this Marker Component be called? Replication ? ShouldReplicate ? Needs some further thought. Please leave feedback if you have it!
The text was updated successfully, but these errors were encountered:
Using the Bevy adapter crates, right now replication is enabled/disabled by calling
commands.entity(entity).enable_replication(&mut client)
orcommands.entity(entity).disable_replication(&mut server)
.. It may be more ergonomic to just insert a Marker Component in order to begin/end replication.What should this Marker Component be called?
Replication
?ShouldReplicate
? Needs some further thought. Please leave feedback if you have it!The text was updated successfully, but these errors were encountered: