We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b270590 commit 20929c6Copy full SHA for 20929c6
cmd/game/main.go
@@ -10,6 +10,7 @@ func main() {
10
g := game.New()
11
g.Init()
12
13
+ ebiten.SetWindowSize(1280, 720)
14
ebiten.SetWindowResizingMode(ebiten.WindowResizingModeEnabled)
15
ebiten.SetWindowTitle("ebijam24")
16
internal/render/camera.go
@@ -11,7 +11,7 @@ func NewCamera(x, y float64) *Camera {
return &Camera{
Positionable: Positionable{x: x, y: y},
Pitch: 1.0,
- Zoom: 1.0,
+ Zoom: 3.0,
}
17
0 commit comments