/// <summary>
 /// Updates visuals for each axle on the vehicle
 /// </summary>
 private void ApplyLocalPositionToAxleVisuals()
 {
     foreach (var axle in vehicle.Axles)
     {
         Axle.UpdateVisuals(axle);
     }
 }