mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-12 22:06:00 -04:00
Add a way to check if water is enabled in post processing shaders
This commit is contained in:
parent
a62b16df5d
commit
5bfca57835
@ -1005,6 +1005,8 @@ namespace MWRender
|
|||||||
{
|
{
|
||||||
mWater->setEnabled(enabled);
|
mWater->setEnabled(enabled);
|
||||||
mSky->setWaterEnabled(enabled);
|
mSky->setWaterEnabled(enabled);
|
||||||
|
|
||||||
|
mPostProcessor->getStateUpdater()->setIsWaterEnabled(enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RenderingManager::setWaterHeight(float height)
|
void RenderingManager::setWaterHeight(float height)
|
||||||
|
@ -81,6 +81,8 @@ namespace fx
|
|||||||
|
|
||||||
void setWaterHeight(float height) { mData.get<WaterHeight>() = height; }
|
void setWaterHeight(float height) { mData.get<WaterHeight>() = height; }
|
||||||
|
|
||||||
|
void setIsWaterEnabled(bool enabled) { mData.get<IsWaterEnabled>() = enabled; }
|
||||||
|
|
||||||
void setSimulationTime(float time) { mData.get<SimulationTime>() = time; }
|
void setSimulationTime(float time) { mData.get<SimulationTime>() = time; }
|
||||||
|
|
||||||
void setDeltaSimulationTime(float time) { mData.get<DeltaSimulationTime>() = time; }
|
void setDeltaSimulationTime(float time) { mData.get<DeltaSimulationTime>() = time; }
|
||||||
@ -145,6 +147,8 @@ namespace fx
|
|||||||
|
|
||||||
struct WaterHeight : std140::Float { static constexpr std::string_view sName = "waterHeight"; };
|
struct WaterHeight : std140::Float { static constexpr std::string_view sName = "waterHeight"; };
|
||||||
|
|
||||||
|
struct IsWaterEnabled : std140::Bool { static constexpr std::string_view sName = "isWaterEnabled"; };
|
||||||
|
|
||||||
struct SimulationTime : std140::Float { static constexpr std::string_view sName = "simulationTime"; };
|
struct SimulationTime : std140::Float { static constexpr std::string_view sName = "simulationTime"; };
|
||||||
|
|
||||||
struct DeltaSimulationTime : std140::Float { static constexpr std::string_view sName = "deltaSimulationTime"; };
|
struct DeltaSimulationTime : std140::Float { static constexpr std::string_view sName = "deltaSimulationTime"; };
|
||||||
@ -182,6 +186,7 @@ namespace fx
|
|||||||
GameHour,
|
GameHour,
|
||||||
SunVis,
|
SunVis,
|
||||||
WaterHeight,
|
WaterHeight,
|
||||||
|
IsWaterEnabled,
|
||||||
SimulationTime,
|
SimulationTime,
|
||||||
DeltaSimulationTime,
|
DeltaSimulationTime,
|
||||||
WindSpeed,
|
WindSpeed,
|
||||||
|
@ -97,6 +97,8 @@ Builtin Uniforms
|
|||||||
| | | |
|
| | | |
|
||||||
| | | Exterior water level is always zero |
|
| | | Exterior water level is always zero |
|
||||||
+-------------+------------------------------+--------------------------------------------------+
|
+-------------+------------------------------+--------------------------------------------------+
|
||||||
|
| bool | ``omw.isWaterEnabled`` | True if water is enabled for current cell |
|
||||||
|
+-------------+------------------------------+--------------------------------------------------+
|
||||||
| float | ``omw.simulationTime`` | The time in milliseconds since simulation began |
|
| float | ``omw.simulationTime`` | The time in milliseconds since simulation began |
|
||||||
+-------------+------------------------------+--------------------------------------------------+
|
+-------------+------------------------------+--------------------------------------------------+
|
||||||
| float | ``omw.deltaSimulationTime`` | The change in `omw.simulationTime` |
|
| float | ``omw.deltaSimulationTime`` | The change in `omw.simulationTime` |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user