cesium-native  0.41.0
Scene.h
1 // This file was generated by generate-classes.
2 // DO NOT EDIT THIS FILE!
3 #pragma once
4 
5 #include "CesiumGltf/Library.h"
6 #include "CesiumGltf/NamedObject.h"
7 
8 #include <cstdint>
9 #include <vector>
10 
11 namespace CesiumGltf {
15 struct CESIUMGLTF_API Scene final : public CesiumGltf::NamedObject {
16  static inline constexpr const char* TypeName = "Scene";
17 
21  std::vector<int32_t> nodes;
22 };
23 } // namespace CesiumGltf
Classes for working with glTF models.
The base class for objects in a glTF that have a name.
Definition: NamedObject.h:15
The root nodes of a scene.
Definition: Scene.h:15
std::vector< int32_t > nodes
The indices of each root node.
Definition: Scene.h:21