前提・実現したいこと
ここに質問の内容を詳しく書いてください。
pygameの機能を用いて画像を描写することを目指しています
発生している問題・エラーメッセージ
エラーメッセージ
AttributeError: module 'pygame' has no attribute 'imgae'
該当のソースコード
import pygame
import sys
def main():
pygame.init()
pygame.display.set_caption("初めてのPygame 画面表示")
screen=pygame.display.set_mode((640,360))
clock=pygame.time.Clock()
img_bg=pygame.image.load("pg_bg.png")
img_chara=[
pygame.imgae.load("pg_chara0.png"),
pygame.imgae.load("pg_chara1.png")
]
tmr=0
while True: tmr=tmr+1 for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() sys.exit() if event.type == pygame.KEYDOWN: if event.key == pygame.K_F1: screen=pygame.display.set_mode((640,360),pygame.FULLSCREEN) if event.key == pygame.K_F2 or event.key == pygame.K_ESCAPE: screen=pygame.display.set_mode((640,360)) x =tm%160 for i in range(5): screen.blit(img_bg,[i*160-x,0]) screen.blit(img_chara[tmr%2],[224,160]) pygame.display.update() clock.tick(5)
if name =='main':
main()
試したこと
似たような質問ではファイル名に注意(pygame.pyにしないなど)があり、ファイル名をpygame_image.py に変更しても上手くいきませんでした。
他にも調べましたが原因が分からず、助けていただけると幸いです。
補足情報(FW/ツールのバージョンなど)
Pythonでつくるゲーム開発入門講座p.227の内容ですが、エラーが出ても解決できませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/13 00:55