cesium-native 0.43.0
Loading...
Searching...
No Matches
GltfConverterResult.h
1#pragma once
2
3#include "Library.h"
4
5#include <CesiumGltf/Model.h>
6#include <CesiumUtility/ErrorList.h>
7
8#include <glm/common.hpp>
9
10#include <optional>
11#include <string>
12#include <vector>
13
14namespace Cesium3DTilesContent {
22struct CESIUM3DTILESCONTENT_API GltfConverterResult {
27 std::optional<CesiumGltf::Model> model;
28
34};
35} // namespace Cesium3DTilesContent
Classes that support loading and converting 3D Tiles tile content.
The result of converting a binary content to gltf model.
CesiumUtility::ErrorList errors
The error and warning list when converting a binary content to gltf model. This is empty if there are...
std::optional< CesiumGltf::Model > model
The gltf model converted from a binary content. This is empty if there are errors during the conversi...
The container to store the error and warning list when loading a tile or glTF content.
Definition ErrorList.h:17