logic flip
This commit is contained in:
parent
e1274a7beb
commit
056f0cf5d5
1 changed files with 13 additions and 11 deletions
|
@ -87,18 +87,20 @@ func (c *Camera) Draw(screen *ebiten.Image, opts ebiten.DrawImageOptions) {
|
||||||
|
|
||||||
// Draw everything.
|
// Draw everything.
|
||||||
for _, i := range c.Scene.Scan() {
|
for _, i := range c.Scene.Scan() {
|
||||||
if d, ok := i.(Drawer); ok {
|
d, ok := i.(Drawer)
|
||||||
pf := 1.0
|
if !ok {
|
||||||
if s, ok := i.(ParallaxScaler); ok {
|
continue
|
||||||
pf = s.ParallaxFactor()
|
|
||||||
}
|
|
||||||
var geom ebiten.GeoM
|
|
||||||
// 1. Move centre to the origin, subject to parallax factor
|
|
||||||
geom.Translate(-float64(centre.X)*pf, -float64(centre.Y)*pf)
|
|
||||||
geom.Concat(comm)
|
|
||||||
opts.GeoM = geom
|
|
||||||
d.Draw(screen, opts)
|
|
||||||
}
|
}
|
||||||
|
pf := 1.0
|
||||||
|
if s, ok := i.(ParallaxScaler); ok {
|
||||||
|
pf = s.ParallaxFactor()
|
||||||
|
}
|
||||||
|
var geom ebiten.GeoM
|
||||||
|
// 1. Move centre to the origin, subject to parallax factor
|
||||||
|
geom.Translate(-float64(centre.X)*pf, -float64(centre.Y)*pf)
|
||||||
|
geom.Concat(comm)
|
||||||
|
opts.GeoM = geom
|
||||||
|
d.Draw(screen, opts)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue