CARLA
Unreal/CarlaUE4/Plugins/Carla/Source/Carla/Sensor/LaneInvasionSensor.cpp
Go to the documentation of this file.
1 // Copyright (c) 2019 Intel Labs.
2 //
3 // This work is licensed under the terms of the MIT license.
4 // For a copy, see <https://opensource.org/licenses/MIT>.
5 
6 #include "Carla.h"
9 
11 {
12  return UActorBlueprintFunctionLibrary::MakeGenericSensorDefinition(TEXT("other"), TEXT("lane_invasion"));
13 }
14 
15 ALaneInvasionSensor::ALaneInvasionSensor(const FObjectInitializer &ObjectInitializer)
16  : Super(ObjectInitializer)
17 {
18  PrimaryActorTick.bCanEverTick = false;
19 }
A definition of a Carla Actor with all the variation and attributes.
static FActorDefinition MakeGenericSensorDefinition(const FString &Type, const FString &Id)