public partial class Synchronizer : MultiplayerSynchronizer { // Required because `Velocity` can't be synchronized automatically. [Export] public Vector3 PlayerVelocity { get => _player.Velocity; set => _player.Velocity = value; } Player _player; public override void _Ready() => _player = GetParent(); }