Skip to content

Commit

Permalink
Update once again to account for misinterpreted documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
thedocruby authored Mar 8, 2021
1 parent 28290c1 commit 399264d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/coderbot/iris/uniforms/CommonUniforms.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public static void addCommonUniforms(UniformHolder uniforms, IdMap idMap) {
.uniform1f(PER_FRAME, "screenBrightness", () -> client.options.gamma)
.uniform1f(PER_TICK, "playerMood", CommonUniforms::getPlayerMood)
.uniform2i(PER_FRAME, "eyeBrightness", CommonUniforms::getEyeBrightness)
.uniform2i(PER_FRAME, "eyeBrightnessSmooth", new SmoothedVec2f(5.0f, CommonUniforms::getEyeBrightness))
.uniform2i(PER_FRAME, "eyeBrightnessSmooth", new SmoothedVec2f(10.0f, CommonUniforms::getEyeBrightness))
.uniform1f(PER_TICK, "rainStrength", CommonUniforms::getRainStrength)
.uniform1f(PER_TICK, "wetness", new SmoothedFloat(300f, CommonUniforms::getRainStrength))
.uniform1f(PER_TICK, "wetness", new SmoothedFloat(600f, CommonUniforms::getRainStrength))
.uniform3d(PER_FRAME, "skyColor", CommonUniforms::getSkyColor);
}

Expand Down

0 comments on commit 399264d

Please sign in to comment.