diff --git a/assets/mesh.png b/assets/mesh.png index 16b1451..c126591 100644 Binary files a/assets/mesh.png and b/assets/mesh.png differ diff --git a/assets/metal.png b/assets/metal.png index 26b72c4..c70b3ef 100644 Binary files a/assets/metal.png and b/assets/metal.png differ diff --git a/assets/pixel_grid.png b/assets/pixel_grid.png index 46db8d8..076aa9a 100644 Binary files a/assets/pixel_grid.png and b/assets/pixel_grid.png differ diff --git a/assets/sand.png b/assets/sand.png index fd50c79..0bc9696 100644 Binary files a/assets/sand.png and b/assets/sand.png differ diff --git a/js/config.js b/js/config.js index ec97b69..e410fba 100644 --- a/js/config.js +++ b/js/config.js @@ -259,7 +259,7 @@ const versions = { bugs: { font: "resurrections", glintTexture: "sand", - baseTexture: "sand", + baseTexture: "metal", glyphEdgeCrop: 0.1, cursorColor: [0.6, 1, 2], isolateGlint: true, @@ -274,9 +274,8 @@ const versions = { bloomStrength: 0.7, fallSpeed: 0.3, paletteEntries: [ - { hsl: [0.12, 0.5, 0.0], at: 0.0 }, - { hsl: [0.12, 0.7, 0.1], at: 0.3 }, - { hsl: [0.13, 0.7, 0.5], at: 1.0 }, + { hsl: [0.12, 0.6, 0.0], at: 0.0 }, + { hsl: [0.14, 0.6, 0.5], at: 1.0 }, ], cycleSpeed: 0.01, volumetric: true, diff --git a/js/regl/utils.js b/js/regl/utils.js index f9ce342..1c33ec9 100644 --- a/js/regl/utils.js +++ b/js/regl/utils.js @@ -4,8 +4,9 @@ const makePassTexture = (regl, halfFloat, mipmap) => height: 1, type: halfFloat ? "half float" : "uint8", wrap: "clamp", + minFilter: "mipmap", min: mipmap ? "mipmap" : "linear", - mag: mipmap ? "mipmap" : "linear", + mag: "linear", }); const makePassFBO = (regl, halfFloat) => regl.framebuffer({ color: makePassTexture(regl, halfFloat) });