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!
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!