fix position sync issues
All checks were successful
Linux arm64 / Build (pull_request) Successful in 1m31s

This commit is contained in:
2024-08-21 12:52:00 +02:00
parent e17387b867
commit 1bd053aba3
13 changed files with 98 additions and 73 deletions

View File

@@ -21,7 +21,7 @@ class Player : public godot::CharacterBody3D {
~Player();
void _ready();
void _physics_process(float delta);
virtual void _physics_process(float delta);
void animate(float delta);
godot::Vector3 GetCameraRotation() const;
@@ -36,7 +36,6 @@ class Player : public godot::CharacterBody3D {
godot::AnimationTree* m_AnimationTree;
godot::Vector3 m_SnapVector;
float m_Speed;
PeerID m_PeerId;
friend class World;