前提・実現したいこと
YouTubeを見ながらsnakeというゲームを作っています。
動画の通り打っているはずがプログラムを読み込むとずっと画面が真っ暗でさらにずっと読み込んでいて消すこともパソコンの電源を消さない限り消えません。
発生している問題・エラーメッセージ
TypeError Traceback (most recent call last) <ipython-input-1-c443145fb5da> in <module> 64 65 ---> 66 main() <ipython-input-1-c443145fb5da> in main() 58 while True: 59 for event in pygame.event.get(): ---> 60 if event.type == pygame.QUIT(): 61 pygame.quet() 62 TypeError: 'int' object is not callable
該当のソースコード
import pygame width = 500 height = 500 rows = 20 class Cube(): def __init__(self, start, x=1, y=0, color=(255, 0, 0)): pass def move(self, x, y): pass def draw(self, surface, eyes=False): pass class Snake(): def __init__(self, color, pos): pass def move(self): pass def reset(self, pos): pass def addBody(self): pass def draw(self, surface): pass window = pygame.display.set_mode((width, height)) def reDrawWindow(): window.fill((0, 0, 0)) drawGrid(width, rows, window) pygame.display.update() def drawGrid(width, rows, surface): length = width // rows x = 0 y = 0 for i in range(rows): x = x + length y = y + length pygame.draw.line(surface, (128, 128, 128,), (x, 0), (x, width)) pygame.draw.line(surface, (128, 128, 128,), (0, y), (width, y)) def randomFood(rows, food): pass def main(): while True: for event in pygame.event.get(): if event.type == pygame.QUIT(): pygame.quet() reDrawWindow() main()
試したこと
打ち間違いがないか確認したりエラーをググっています。
補足情報(FW/ツールのバージョンなど)
初心者なので初歩的なミスかもしれませんがお力をお貸しください。orz
回答1件
あなたの回答
tips
プレビュー