1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Volumetric effects

This commit is contained in:
Gefüllte Taubenbrust 2024-07-05 12:15:22 +02:00
parent cd6e304cfa
commit 22ba7449f2
15 changed files with 468 additions and 23 deletions

View file

@ -28,7 +28,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "settings.h"
#include <cmath>
// Menu clouds are created later
class Clouds;
Clouds *g_menuclouds = NULL;
@ -344,6 +343,7 @@ void Clouds::updateMesh()
void Clouds::render()
{
#if 0
if (m_params.density <= 0.0f)
return; // no need to do anything
@ -394,13 +394,7 @@ void Clouds::render()
// Restore fog settings
driver->setFog(fog_color, fog_type, fog_start, fog_end, fog_density,
fog_pixelfog, fog_rangefog);
}
void Clouds::renderVolumetrics() {
video::IVideoDriver* driver = SceneManager->getVideoDriver();
v2u32 ss = driver->getScreenSize();
core::rect<s32> rect(0, 0, ss.X, ss.Y);
driver->draw2DRectangle(video::SColor(255, 255, 255, 255), rect);
#endif
}
void Clouds::step(float dtime)