JPADrawVisitor couple funcs

This commit is contained in:
LagoLunatic
2024-01-08 18:02:31 -05:00
parent 101a096809
commit 4bd6442291
5 changed files with 164 additions and 130 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ public:
void initAnm() {
for (int i = 0; i < 4; i++) {
mOne[i] = 0;
mOne[i] = NULL;
mTwo[i] = 0.0f;
}
}
+1 -1
View File
@@ -71,7 +71,7 @@ public:
Mtx& getMtx() { return mMtx; }
void setEffectMtx(Mtx effectMtx) { mTexMtxInfo.setEffectMtx(effectMtx); }
Mtx& getViewMtx() { return mViewMtx; }
void setViewMtx(Mtx viewMtx) { MTXCopy(viewMtx, mViewMtx); }
void setViewMtx(const Mtx viewMtx) { MTXCopy(viewMtx, mViewMtx); }
void getTextureSRT() {}
+3 -2
View File
@@ -270,14 +270,12 @@ public:
void checkEmDataFlag(u32) {}
void drawCB() {}
void drawEmitterCallBack() {}
void getAspect() {}
void getAxisYVec(JGeometry::TVec3<f32>&) const {}
void getBaseEnvColor(GXColor&) {}
void getBasePrmColor(GXColor&) {}
void getCamMtxPtr() {}
void getChildParticleList() {}
void getCurrentCreateNumber() const {}
void getFovy() {}
void getFrame() {}
void getGlobalParticleScale(JGeometry::TVec3<f32>&) const {}
void getParticleList() {}
@@ -305,6 +303,9 @@ public:
vec2.set(emtrInfo.mEmitterGlobalRot[0][2], emtrInfo.mEmitterGlobalRot[1][2], emtrInfo.mEmitterGlobalRot[2][2]);
}
static f32 getAspect() { return emtrInfo.mAspect; }
static f32 getFovy() { return emtrInfo.mFovy; }
/* 0x000 */ VolumeFunc mVolumeFunc;
/* 0x00C */ JGeometry::TVec3<f32> mEmitterScale;
/* 0x018 */ JGeometry::TVec3<f32> mEmitterTranslation;