このコミットが含まれているのは:
2024-04-04 20:56:17 +09:00
コミット 4bbc5975a7
2個のファイルの変更11行の追加2行の削除
+7
ファイルの表示
@@ -0,0 +1,7 @@
from pydantic import BaseModel
class CWindow (BaseModel, frozen = True):
WIDTH: int = 1024
HEIGHT: int = 768
+4 -2
ファイルの表示
@@ -12,6 +12,7 @@ from playsound import playsound
from pygame.locals import *
from aques import Aques
from common_const import *
from common_module import CommonModule
from talk import Talk
from youtube import *
@@ -24,11 +25,12 @@ class Main:
# ウィンドゥの初期化
pygame.init ()
screen: pygame.Surface = pygame.display.set_mode ((1024, 768))
screen: pygame.Surface = pygame.display.set_mode (
(CWindow.WIDTH, CWindow.HEIGHT))
# 吹き出し
balloon = pygame.transform.scale (pygame.image.load ('talking.png'),
(1024, 384))
(CWindow.WIDTH, 384))
if goatoh_mode:
balloon = pygame.transform.flip (balloon, False, True)