Motorider map theme (#1045)

This commit is contained in:
Emux
2023-05-25 16:04:54 +03:00
committed by GitHub
parent fb0b88e916
commit 1d96dfb7f1
6 changed files with 2440 additions and 6 deletions

View File

@@ -131,16 +131,26 @@ public class InputHandler implements InputProcessor {
break;
case Input.Keys.NUM_4:
mMap.setTheme(VtmThemes.OSMAGRAY);
mMap.setTheme(VtmThemes.MOTORIDER);
mMap.updateMap(false);
break;
case Input.Keys.NUM_5:
mMap.setTheme(VtmThemes.TRONRENDER);
mMap.setTheme(VtmThemes.MOTORIDER_DARK);
mMap.updateMap(false);
break;
case Input.Keys.NUM_6:
mMap.setTheme(VtmThemes.OSMAGRAY);
mMap.updateMap(false);
break;
case Input.Keys.NUM_7:
mMap.setTheme(VtmThemes.TRONRENDER);
mMap.updateMap(false);
break;
case Input.Keys.NUM_8:
mMap.setTheme(VtmThemes.NEWTRON);
mMap.updateMap(false);
break;