cesium-native  0.41.0
Skin.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 Skin final : public CesiumGltf::NamedObject {
16  static inline constexpr const char* TypeName = "Skin";
17 
26  int32_t inverseBindMatrices = -1;
27 
34  int32_t skeleton = -1;
35 
39  std::vector<int32_t> joints;
40 };
41 } // namespace CesiumGltf
Classes for working with glTF models.
The base class for objects in a glTF that have a name.
Definition: NamedObject.h:15
Joints and matrices defining a skin.
Definition: Skin.h:15
std::vector< int32_t > joints
Indices of skeleton nodes, used as joints in this skin.
Definition: Skin.h:39