CARLA
 
载入中...
搜索中...
未找到
CarlaWheeledVehicleState.h
浏览该文件的文档.
1// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#pragma once
8
9#include "CarlaWheeledVehicleState.generated.h"
10
11/// 用于调试目的,在编辑器中显示的CARLA轮式车辆状态。
12UENUM(BlueprintType)
13enum class ECarlaWheeledVehicleState : uint8
14{
15 AutopilotOff UMETA(DisplayName = "Autopilot Off"),
16 FreeDriving UMETA(DisplayName = "Free driving"),
17 FollowingFixedRoute UMETA(DisplayName = "Following fixed route"),
18 WaitingForRedLight UMETA(DisplayName = "Waiting for red light"),
19 ObstacleAhead UMETA(DisplayName = "Obstacle ahead"),
20 UNKNOWN UMETA(DisplayName = "Unknown")
21};
ECarlaWheeledVehicleState
用于调试目的,在编辑器中显示的CARLA轮式车辆状态。