d3d10/gltf_instance.hpp
Zack Buhman 473bf1965b gltf: draw rigged_simple animation
This includes a slightly more correct interpretation of GLTF animation
samplers.
2026-01-04 19:15:39 -06:00

11 lines
163 B
C++

#ifndef GLTF_INSTANCE_HPP_
#define GLTF_INSTANCE_HPP_
struct NodeInstance {
D3DXVECTOR3 translation;
D3DXQUATERNION rotation;
D3DXVECTOR3 scale;
};
#endif