automated snapshot

This commit is contained in:
sumi
2025-12-26 01:16:24 -06:00
parent 33e014e0de
commit 908e25f900
2 changed files with 2 additions and 2 deletions

View File

@@ -260,7 +260,7 @@ func (fl *FieldLayer) Draw(ctx *RenderCtx) {
for x := range ctx.SourceWidth {
for y := range ctx.SourceHeight {
v := fl.field.Get(float32(x), float32(y))
clr := LerpCurve(v, 1.0, fl.loColor, fl.hiColor)
clr := LerpCurve(v, 1.3, fl.loColor, fl.hiColor)
rl.DrawPixel(x, y, clr)
}
}