Added missing file

This commit is contained in:
doterop 2020-10-14 16:27:57 +02:00
parent dbe7c2a89f
commit 81a90f3886
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
// Copyright (c) 2020 Computer Vision Center (CVC) at the Universitat Autonoma
// de Barcelona (UAB).
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#pragma once
#include <compiler/disable-ue4-macros.h>
#include <carla/rpc/ObjectLabel.h>
#include <compiler/enable-ue4-macros.h>
#include "EnvironmentObject.generated.h"
namespace crp = carla::rpc;
// Name is under discussion
USTRUCT(BlueprintType)
struct CARLA_API FEnvironmentObject
{
GENERATED_BODY()
AActor* Actor = nullptr;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FString Name;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FTransform Transform;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FBoundingBox BoundingBox;
uint64 Id = 0;
crp::CityObjectLabel ObjectLabel;
bool CanTick = false;
};