Skip to content

Commit

Permalink
fix Linux compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sytelus committed Apr 30, 2018
1 parent 2bcecb3 commit 318dcf9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion Unreal/Plugins/AirSim/Source/AirBlueprintLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include "UObjectIterator.h"
#include "Camera/CameraComponent.h"
//#include "Runtime/Foliage/Public/FoliageType.h"
#include "Kismet/KismetStringLibrary.h"
#include "MessageDialog.h"
#include "Engine/LocalPlayer.h"
#include "Engine/SkeletalMesh.h"
Expand Down
1 change: 1 addition & 0 deletions Unreal/Plugins/AirSim/Source/AirBlueprintLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "Components/MeshComponent.h"
#include "LandscapeProxy.h"
#include "Kismet/GameplayStatics.h"
#include "Kismet/KismetStringLibrary.h"

#include "Runtime/Landscape/Classes/LandscapeComponent.h"
#include "common/AirSimSettings.hpp"
Expand Down
2 changes: 1 addition & 1 deletion Unreal/Plugins/AirSim/Source/Car/CarPawnApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void CarPawnApi::reset()
pawn_->reset();

for (auto* phys_comp : phys_comps) {
phys_comp->SetPhysicsAngularVelocity(FVector::ZeroVector);
phys_comp->SetPhysicsAngularVelocityInDegrees(FVector::ZeroVector);
phys_comp->SetPhysicsLinearVelocity(FVector::ZeroVector);
phys_comp->SetSimulatePhysics(false);
}
Expand Down

0 comments on commit 318dcf9

Please sign in to comment.