Impl process for RemotePlayer

This commit is contained in:
Sofia 2026-07-18 00:59:12 +03:00
parent 90a39d712d
commit 67110b8216

View File

@ -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);
}
}