2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +00:00

TMultiBlendShader and quad filters

This commit is contained in:
Jack Andersen
2016-08-16 15:58:53 -10:00
parent d2fca93a8e
commit d234bffe2a
22 changed files with 691 additions and 38 deletions

View File

@@ -144,15 +144,21 @@ void CWorldTransManager::Update(float dt)
}
}
void CWorldTransManager::DrawEnabled() const
void CWorldTransManager::DrawEnabled()
{
}
void CWorldTransManager::DrawDisabled() const
void CWorldTransManager::DrawDisabled()
{
m_fadeToBlack.draw(zeus::CColor{0.f, 0.f, 0.f, 0.01});
}
void CWorldTransManager::Draw() const
void CWorldTransManager::DrawText()
{
}
void CWorldTransManager::Draw()
{
if (x30_type == ETransType::Disabled)
DrawDisabled();
@@ -291,9 +297,4 @@ void CWorldTransManager::EndTransition()
DisableTransition();
}
void CWorldTransManager::DrawText() const
{
}
}