diff options
Diffstat (limited to 'include/JSystem')
| -rw-r--r-- | include/JSystem/J3DGraphAnimator/J3DJoint.h | 1 | ||||
| -rw-r--r-- | include/JSystem/J3DGraphAnimator/J3DModel.h | 1 | ||||
| -rw-r--r-- | include/JSystem/JUtility/JUTDbPrint.h | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DJoint.h b/include/JSystem/J3DGraphAnimator/J3DJoint.h index ff9d189779..cd759add7f 100644 --- a/include/JSystem/J3DGraphAnimator/J3DJoint.h +++ b/include/JSystem/J3DGraphAnimator/J3DJoint.h @@ -66,6 +66,7 @@ public: J3DJoint* getChild() { return mChild; } u8 getMtxType() { return (mKind & 0xf0) >> 4; } void setMtxType(u8 type) { mKind = (mKind & ~0xf0) | (type << 4); } + f32 getRadius() const { return mBoundingSphereRadius; } static J3DMtxCalc* mCurrentMtxCalc; diff --git a/include/JSystem/J3DGraphAnimator/J3DModel.h b/include/JSystem/J3DGraphAnimator/J3DModel.h index 82b2a13da6..5bbd7dc352 100644 --- a/include/JSystem/J3DGraphAnimator/J3DModel.h +++ b/include/JSystem/J3DGraphAnimator/J3DModel.h @@ -6,6 +6,7 @@ #include "dolphin/types.h" enum J3DMdlFlag { + J3DMdlFlag_None = 0x0, /* 0x00001 */ J3DMdlFlag_Unk00001 = 0x1, /* 0x00002 */ J3DMdlFlag_Unk00002 = 0x2, /* 0x00004 */ J3DMdlFlag_SkinPosCpu = 0x4, diff --git a/include/JSystem/JUtility/JUTDbPrint.h b/include/JSystem/JUtility/JUTDbPrint.h index 0620200815..af8e4e1769 100644 --- a/include/JSystem/JUtility/JUTDbPrint.h +++ b/include/JSystem/JUtility/JUTDbPrint.h @@ -38,6 +38,8 @@ public: void setVisible(bool visible) { mVisible = visible; } JUTFont* getFont() const { return mFont; } + void setCharColor(JUtility::TColor color) { mColor = color; }; + static JUTDbPrint* sDebugPrint; private: |
