citylimits/flags_web.go

19 lines
342 B
Go
Raw Normal View History

2022-01-09 17:10:40 +00:00
//go:build js && wasm
// +build js,wasm
package main
import (
"code.rocketnine.space/tslocum/citylimits/world"
"github.com/hajimehoshi/ebiten/v2"
)
func parseFlags() {
world.World.DisableEsc = true
2022-01-15 00:58:44 +00:00
// Adjust minimum zoom level due to performance decrease when targeting WASM.
world.CameraMinZoom = 0.6
2022-01-09 17:10:40 +00:00
ebiten.SetFullscreen(true)
}