ゲームを作りながら楽しく学べるPythonプログラミングという本のプログラミングです。
キャラクタのサンプルを描画するプログラミングが実行できないです。
コードレビューと改善策をご教授いただけると幸いです。
エラーメッセージ:
Traceback (most recent call last):
File "/Users/ユーザー名/Desktop/drawimagesubregion2.py", line 48, in <module>
main()
File "/Users/ユーザー名/Desktop/drawimagesubregion2.py", line 43, in main
SURFACE.blit(image[8],(pos_x,150))
TypeError: 'pygame.Surface' object is not subscriptable
python
1"""draw_image_subregion2.py""" 2import sys 3import pygame 4from pygame.locals import QUIT,Rect,KEYDOWN,K_LEFT,K_RIGHT 5 6pygame.init() 7pygame.key.set_repeat(5,5) 8SURFACE=pygame.display.set_mode((300,200)) 9FPSCLOCK=pygame.time.Clock() 10 11def main (): 12 """main routine""" 13 strip=pygame.image.load("strip.png") 14 images=[] 15 for index in range(9): 16 image=pygame.Surface((24,24)) 17 image.blit(strip,(0,0),Rect(index*24,0,24,24)) 18 images.append(image) 19 20 counter=0 21 pos_x=100 22 23 while True: 24 for event in pygame.event.get(): 25 if event.type==QUIT: 26 pygame.quit() 27 sys.exit() 28 elif event.type==KEYDOWN: 29 if event.key==K_LEFT: 30 pos_x-=5 31 elif event.key==K_RIGHT: 32 pos_x+=5 33 34 35 SURFACE.fill((0,0,0)) 36 37 SURFACE.blit(images[counter%2+0],(50,50)) 38 SURFACE.blit(images[counter%2+2],(100,50)) 39 SURFACE.blit(images[counter%2+4],(150,50)) 40 SURFACE.blit(images[counter%2+6],(200,50)) 41 counter+=1 42 43 SURFACE.blit(image[8],(pos_x,150)) 44 pygame.display.update() 45 FPSCLOCK.tick(5) 46 47if __name__=='__main__': 48 main() 49 50
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。