CARLA
 
载入中...
搜索中...
未找到
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
15namespace carla {
16namespace rpc {
17
18 enum class QualityLevel : uint8_t {
19 Low, // 低画质,通过命令启动:CarlaUE4.exe -quality-level=Low
20 // Medium,
21 // High,
22 Epic, // 高画质(史诗级)
23
24 SIZE,
26 };
27
28} // namespace rpc
29} // namespace carla
30
MSGPACK_ADD_ENUM(carla::rpc::QualityLevel)
CARLA模拟器的主命名空间。
Definition Carla.cpp:139