diff --git a/rust/src/player.rs b/rust/src/player.rs index ae60bdb..12c3945 100644 --- a/rust/src/player.rs +++ b/rust/src/player.rs @@ -184,4 +184,8 @@ impl Player for RemotePlayer { } #[godot_api] -impl ICharacterBody3D for RemotePlayer {} +impl ICharacterBody3D for RemotePlayer { + fn process(&mut self, delta: f64) { + self.player_update(delta); + } +}