Animation sync (#60)

This commit is contained in:
PROMETHIA-27
2025-07-29 07:32:54 -04:00
committed by GitHub
parent 0bd3fb0e80
commit c650924d68
16 changed files with 136 additions and 98 deletions

View File

@@ -65,6 +65,6 @@ fn spawn_disconnected_player(
heads_db: Res<HeadsDatabase>,
) {
if disconnected.state == ClientState::Disconnected {
shared::player::spawn(commands, query, asset_server, heads_db)
shared::player::spawn(commands, Entity::PLACEHOLDER, query, asset_server, heads_db)
}
}

View File

@@ -47,7 +47,7 @@ fn main() {
..default()
})
.set(bevy::log::LogPlugin {
filter: "info".into(),
filter: "info,lightyear_replication=warn".into(),
level: bevy::log::Level::INFO,
// provide custom log layer to receive logging events
custom_layer: bevy_debug_log::log_capture_layer,