Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RigAsset.hpp
1#if 0
2#pragma once
3
4#include <vector>
5#include "Common/Math.hpp"
6#include "EngineCore/Assets/Asset.hpp"
7
8namespace Grindstone {
9 struct RigAsset : public Asset {
10 struct Bone {
11 size_t parentBoneIndex;
12 Math::Matrix4 localMatrix;
13 Math::Matrix4 inverseModelMatrix;
14 };
15
16 std::vector<Bone> bones;
17
18 DEFINE_ASSET_TYPE
19 };
20}
21#endif