Removed tabs.

This commit is contained in:
Axel 2021-03-02 17:41:38 +01:00 committed by Axel1092
parent 74180b0fe7
commit 226942381d
1 changed files with 2 additions and 2 deletions

View File

@ -181,12 +181,12 @@ void UChronoMovementComponent::BeginPlay()
// Create JSON vehicle
Vehicle = chrono_types::make_shared<WheeledVehicle>(
&Sys,
VehiclePath_string);
VehiclePath_string);
Vehicle->Initialize(ChCoordsys<>(ChronoLocation, ChronoRotation));
Vehicle->GetChassis()->SetFixed(false);
// Create and initialize the powertrain System
auto powertrain = ReadPowertrainJSON(
PowerTrain_string);
PowerTrain_string);
Vehicle->InitializePowertrain(powertrain);
// Create and initialize the tires
for (auto& axle : Vehicle->GetAxles()) {