mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 22:40:11 -04:00
JPADrawVisitor couple funcs
This commit is contained in:
@@ -19,7 +19,7 @@ public:
|
||||
|
||||
void initAnm() {
|
||||
for (int i = 0; i < 4; i++) {
|
||||
mOne[i] = 0;
|
||||
mOne[i] = NULL;
|
||||
mTwo[i] = 0.0f;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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() {}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user