dAcEremly_c:: oh thats a lot of changes

This commit is contained in:
elijah-thomas774
2026-04-08 23:52:22 -04:00
parent 84a65865d0
commit 5d27cfd9a5
9 changed files with 638 additions and 87 deletions
+10
View File
@@ -95,9 +95,15 @@ public:
mVec3_c &getOldPosition() {
return mOldPosition;
}
void setOldPosition(const mVec3_c &v) {
mOldPosition = v;
}
mVec3_c &getStartingPosition() {
return mStartingPos;
}
void setStartingPosition(const mVec3_c &v) {
mStartingPos = v;
}
mVec3_c &getVelocity() {
return mVelocity;
}
@@ -105,6 +111,10 @@ public:
return mAngle;
}
void setStartingRotation(const mAng3_c &v) {
mStartingRot = v;
}
f32 getVelocityMag() const {
return fabsf(nw4r::math::VEC3LenSq(mVelocity));
}