[fix] Fixed an issue that the display blinked right after loading.

This commit is contained in:
falsycat 2019-10-17 00:00:00 +00:00
parent 1df1087dde
commit cee5f716ac

View File

@ -101,6 +101,7 @@ class LoadingScene : SceneInterface {
return this; return this;
} }
override void Draw() { override void Draw() {
if (anime_.isFinished) return;
lobby_.Draw(); lobby_.Draw();
loading_text_.Draw(lobby_.Projection, lobby_.view.Create()); loading_text_.Draw(lobby_.Projection, lobby_.view.Create());
} }