[Update] Add Splash Screen: 起動中に何かしらの表示をして、ユーザーへのフィードバック。画像は仮置き。

This commit is contained in:
Sakamoto Shiina
2023-10-11 13:34:58 +09:00
parent 1b554c7c0c
commit 379e916428
4 changed files with 68 additions and 0 deletions

View File

@@ -1,5 +1,10 @@
from vrct_gui.splash_window import SplashWindow
splash = SplashWindow()
splash.showSplash()
import controller
if __name__ == "__main__":
controller.createMainWindow()
splash.destroySplash()
controller.showMainWindow()