feat: tried disabling "transform" in the Stages' Groups

This commit is contained in:
Laureηt 2021-05-12 17:51:21 +02:00
parent 6ca47f41e6
commit ce73fca475

View file

@ -13,7 +13,9 @@ public abstract class BaseScreen implements Screen {
public BaseScreen() {
mainStage = new Stage();
mainStage.getRoot().setTransform(false);
uiStage = new Stage();
uiStage.getRoot().setTransform(false);
initialize();
}