1
0
Fork 0
mirror of https://github.com/Findus23/RainbowRoad.git synced 2024-09-19 16:03:52 +02:00

make flags on areal view more opaque

This commit is contained in:
Lukas Winkler 2023-05-21 18:16:15 +02:00
parent 0c0c58d9d8
commit f5fbcefea2
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -33,6 +33,6 @@ export class MapButton extends Control {
this.showingOrtho = !this.showingOrtho
firstLayer.setVisible(!this.showingOrtho)
secondLayer.setVisible(this.showingOrtho)
thirdLayer.setOpacity(this.showingOrtho ? 0.5 : 1)
thirdLayer.setOpacity(this.showingOrtho ? 0.2 : 1)
}
}