Skip to content

Commit

Permalink
water animation updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kismama committed Aug 7, 2024
1 parent 9b76688 commit 148d067
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GL/BTextureAtlas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void Dispose() {
}

public void update(double dt) {
if (ticks % 3 == 0) {
if (ticks % 10 == 0) {
updateTexture(0, 4 * 16, 16, 16, (i % 16) * 16, 4 * 16);
i++;
}
Expand Down
2 changes: 1 addition & 1 deletion src/render/WorldRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class WorldRenderer {
private int outline_uView;
private int outline_uProjection;

public static Color4b defaultClearColour = new Color4b(70, 190, 225);
public static Color4b defaultClearColour = new Color4b(148, 223, 255);
public static Color4b defaultFogColour = new Color4b(210, 210, 210);

public bool fastChunkSwitch = true;
Expand Down
Binary file modified textures/blocks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 148d067

Please sign in to comment.