Restructured Img and FontAtlas.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user