diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-26 17:43:02 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-26 17:43:02 -0400 |
| commit | d9c2ffe6190d6342bf00328b30bdaa67c30ffee3 (patch) | |
| tree | 1801f38fac2efeda20e5a35f13dff965ff4daf77 /include/JSystem | |
| parent | 993431d0f8a6249dbd1d9d0a49f45e50c996976a (diff) | |
J3DModel inlines
Diffstat (limited to 'include/JSystem')
| -rw-r--r-- | include/JSystem/J3DGraphAnimator/J3DModelData.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DModelData.h b/include/JSystem/J3DGraphAnimator/J3DModelData.h index 24f3e30c..39d8efdc 100644 --- a/include/JSystem/J3DGraphAnimator/J3DModelData.h +++ b/include/JSystem/J3DGraphAnimator/J3DModelData.h @@ -71,8 +71,10 @@ public: u32 getModelDataType() const { return mJointTree.getModelDataType(); } const J3DModelHierarchy* getHierarchy() const { return mJointTree.getHierarchy(); } void setHierarchy(J3DModelHierarchy* hierarchy) { mJointTree.setHierarchy(hierarchy); } + J3DMtxCalc* getBasicMtxCalc() { return mJointTree.getBasicMtxCalc(); } void setBasicMtxCalc(J3DMtxCalc* calc) { mJointTree.setBasicMtxCalc(calc); } void setModelDataType(u32 type) { mJointTree.setModelDataType(type); } + J3DJoint* getRootNode() { return mJointTree.getRootNode(); } GXColor* getVtxColorArray(u8 idx) const { return mVertexData.getVtxColorArray(idx); } bool checkFlag(u32 flag) const { return (mFlags & flag) ? true : false; } u32 getFlag() const { return mFlags; } @@ -109,10 +111,6 @@ public: } const void* getBinary() { return mBinary; } - // TODO - void getBasicMtxCalc() {} - void getRootNode() {} - private: friend class J3DModelLoader; |
