-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelist: - Upgrade to Bevy 0.10 for related adapter crates - Implemented Client-authoritative Entities - Improved Bevy adapter API
- Loading branch information
1 parent
6f38660
commit 665b7ba
Showing
163 changed files
with
4,958 additions
and
3,129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use bevy_ecs::component::Component; | ||
|
||
use naia_bevy_shared::HostOwned; | ||
|
||
pub type ClientOwned = HostOwned; | ||
|
||
#[derive(Component)] | ||
pub struct ServerOwned; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
pub use naia_bevy_shared::{sequence_greater_than, Tick}; | ||
pub use naia_bevy_shared::{sequence_greater_than, Random, ReceiveEvents, Tick}; | ||
pub use naia_client::{ClientConfig, CommandHistory}; | ||
|
||
pub mod events; | ||
|
||
mod client; | ||
mod commands; | ||
mod components; | ||
mod plugin; | ||
mod stage; | ||
mod state; | ||
mod systems; | ||
|
||
pub use client::Client; | ||
pub use commands::CommandsExt; | ||
pub use components::{ClientOwned, ServerOwned}; | ||
pub use plugin::Plugin; | ||
pub use stage::Stage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.