From 852b40ab13452f880f2d437419c41d94f074a56a Mon Sep 17 00:00:00 2001 From: sumi Date: Sat, 10 Jan 2026 22:03:36 -0600 Subject: [PATCH] automated snapshot --- contour_layer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contour_layer.go b/contour_layer.go index dfe8bc2..18d2171 100644 --- a/contour_layer.go +++ b/contour_layer.go @@ -62,13 +62,13 @@ func (s *ContourLayer) Update(env *Env, g *sg.Graphics) { } func (s *ContourLayer) Draw(env *Env, g *sg.Graphics) { - g.BeginAdditiveBlend() + //g.BeginAdditiveBlend() for _, actor := range s.actors { if actor != nil { actor.Draw(env, g) } } - g.EndBlend() + //g.EndBlend() } func (s *ContourLayer) IsDirty() bool {