CARLA
载入中...
搜索中...
未找到
LibCarla
source
carla
rpc
QualityLevel.h
浏览该文件的文档.
1
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2
// de Barcelona (UAB).
3
//
4
// 画质
5
//
6
// This work is licensed under the terms of the MIT license.
7
// For a copy, see <https://opensource.org/licenses/MIT>.
8
9
#pragma once
10
11
#include "
carla/MsgPack.h
"
12
13
#include <cstdint>
14
15
namespace
carla
{
16
namespace
rpc {
17
18
enum class
QualityLevel
: uint8_t {
19
Low
,
// 低画质,通过命令启动:CarlaUE4.exe -quality-level=Low
20
// Medium,
21
// High,
22
Epic
,
// 高画质(史诗级)
23
24
SIZE
,
25
INVALID
26
};
27
28
}
// namespace rpc
29
}
// namespace carla
30
31
MSGPACK_ADD_ENUM
(
carla::rpc::QualityLevel
);
MsgPack.h
MSGPACK_ADD_ENUM
MSGPACK_ADD_ENUM(carla::rpc::QualityLevel)
carla::rpc::ActorAttributeType::SIZE
@ SIZE
carla::rpc::ActorAttributeType::INVALID
@ INVALID
carla::rpc::QualityLevel
QualityLevel
Definition
QualityLevel.h:18
carla::rpc::QualityLevel::Low
@ Low
carla::rpc::QualityLevel::Epic
@ Epic
carla
CARLA模拟器的主命名空间。
Definition
Carla.cpp:139
制作者
1.10.0