Restructured Img and FontAtlas.

This commit is contained in:
2024-01-23 17:26:27 -08:00
parent 039ab8cc0f
commit 897d3b9120
13 changed files with 502 additions and 452 deletions

View File

@@ -20,7 +20,7 @@ namespace ehs
public:
Bone();
Bone(Str_8 name, const UInt_8 id, const Mat4_f& localBindTrans, const Mat4_f& invBindTrans);
Bone(Str_8 name, UInt_8 id, const Mat4_f& localBindTrans, const Mat4_f& invBindTrans);
Bone(Bone&& bone) noexcept;
@@ -50,21 +50,21 @@ namespace ehs
UInt_8 GetBoneCount() const;
bool HasBone(const UInt_64 hashName, const UInt_8 id) const;
bool HasBone(UInt_64 hashName, UInt_8 id) const;
bool HasBone(const UInt_64 hashName) const;
bool HasBone(UInt_64 hashName) const;
bool HasBone(const UInt_8 id) const;
bool HasBone(UInt_8 id) const;
bool AddBone(Bone child);
const Bone* GetBone(const UInt_64 hashName) const;
const Bone* GetBone(UInt_64 hashName) const;
Bone* GetBone(const UInt_64 hashName);
Bone* GetBone(UInt_64 hashName);
const Bone* GetBone(const UInt_8 id) const;
const Bone* GetBone(UInt_8 id) const;
Bone* GetBone(const UInt_8 id);
Bone* GetBone(UInt_8 id);
const Array<Bone>& GetChildren() const;