automated snapshot

This commit is contained in:
sumi
2026-01-10 22:03:36 -06:00
parent 5d685c7f4e
commit 852b40ab13

View File

@@ -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 {