summaryrefslogtreecommitdiff
path: root/include/JSystem/J3DGraphAnimator
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2023-05-09 10:41:27 +0300
committerTal Hayon <talhayon1@gmail.com>2023-05-09 10:41:27 +0300
commitff07b43bfac8a9b00e648fd3efc1b26f6dcf35d1 (patch)
tree36827ce8c1d178600daa071b55ec047c3b1f980f /include/JSystem/J3DGraphAnimator
parent44b0fdbb0d73226eb8f365572f75d2ee026f1040 (diff)
J3DJoint OK
Diffstat (limited to 'include/JSystem/J3DGraphAnimator')
-rw-r--r--include/JSystem/J3DGraphAnimator/J3DJoint.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DJoint.h b/include/JSystem/J3DGraphAnimator/J3DJoint.h
index dcb89894ac..12f2da776c 100644
--- a/include/JSystem/J3DGraphAnimator/J3DJoint.h
+++ b/include/JSystem/J3DGraphAnimator/J3DJoint.h
@@ -24,6 +24,7 @@ public:
static J3DMtxBuffer* getMtxBuffer() { return mMtxBuffer; }
static J3DJoint* getJoint() { return mJoint; }
+ static void setJoint(J3DJoint* joint) { mJoint = joint; }
static J3DMtxBuffer* mMtxBuffer;
static J3DJoint* mJoint;
@@ -63,7 +64,11 @@ public:
Vec* getMax() { return &mMax; }
Vec* getMin() { return &mMin; }
void setCallBack(J3DJointCallBack callback) { mCallBack = callback; }
+ J3DJointCallBack getCallBack() { return mCallBack; }
void setMtxCalc(J3DMtxCalc* i_mtxCalc) { mMtxCalc = i_mtxCalc; }
+ J3DMtxCalc* getMtxCalc() { return mMtxCalc; }
+ J3DMtxCalc* getCurrentMtxCalc() { return mCurrentMtxCalc; };
+ J3DJoint* getChild() { return mChild; }
static J3DMtxCalc* mCurrentMtxCalc;