mirror of https://github.com/AxioDL/metaforce.git
Merge pull request #262 from lioncash/nullopt
CBeamProjectile: Explicitly return std::nullopt in GetTouchBounds()
This commit is contained in:
commit
dbbf9e33fd
|
@ -25,13 +25,16 @@ CBeamProjectile::CBeamProjectile(const TToken<CWeaponDescription>& wDesc, std::s
|
||||||
}
|
}
|
||||||
|
|
||||||
std::optional<zeus::CAABox> CBeamProjectile::GetTouchBounds() const {
|
std::optional<zeus::CAABox> CBeamProjectile::GetTouchBounds() const {
|
||||||
if (!GetActive())
|
if (!GetActive()) {
|
||||||
return {};
|
return std::nullopt;
|
||||||
|
}
|
||||||
|
|
||||||
if (x464_25_enableTouchDamage) {
|
if (x464_25_enableTouchDamage) {
|
||||||
zeus::CVector3f pos = GetTranslation();
|
const zeus::CVector3f pos = GetTranslation();
|
||||||
return {{pos - 0.1f, pos + 0.1f}};
|
return {{pos - 0.1f, pos + 0.1f}};
|
||||||
}
|
}
|
||||||
return {};
|
|
||||||
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CBeamProjectile::CalculateRenderBounds() { x9c_renderBounds = x354_.getTransformedAABox(x324_xf); }
|
void CBeamProjectile::CalculateRenderBounds() { x9c_renderBounds = x354_.getTransformedAABox(x324_xf); }
|
||||||
|
|
Loading…
Reference in New Issue