automated snapshot

This commit is contained in:
sumi
2025-12-27 02:34:54 -06:00
parent 80d3a0fde8
commit 5e7006c194
2 changed files with 7 additions and 5 deletions

View File

@@ -258,7 +258,7 @@ func (s *Sketch) Update(ctx *RenderCtx) {
// Zoom based on mouse wheel
wheel := rl.GetMouseWheelMove()
if wheel != 0 {
const zoomIncrement float32 = 0.05
const zoomIncrement float32 = 0.20
if wheel > 0 {
s.cam.Zoom *= 1+zoomIncrement
} else {