v2.5.0: fixed new story UI not setting region intros as read

This commit is contained in:
Evan Debenham
2024-09-10 12:07:04 -04:00
parent 56d3a0da18
commit 0368b61d89

View File

@@ -281,6 +281,7 @@ public class InterlevelScene extends PixelScene {
timeLeft = fadeTime; timeLeft = fadeTime;
btnContinue.enable(false); btnContinue.enable(false);
Document.INTROS.readPage(region);
} }
}; };
btnContinue.icon(Icons.STAIRS.get()); btnContinue.icon(Icons.STAIRS.get());
@@ -312,6 +313,7 @@ public class InterlevelScene extends PixelScene {
phase = Phase.FADE_OUT; phase = Phase.FADE_OUT;
timeLeft = fadeTime; timeLeft = fadeTime;
btnContinue.enable(false); btnContinue.enable(false);
Document.INTROS.readPage(region);
} }
return true; return true;
} }