Commit a9e00048 by BellCodeEditor

auto save

parent c6188a1e
Showing with 25 additions and 3 deletions
import pygame
from pygame import locals
# 初始化pygame,为使用pygame做准备
pygame.init()
background = pygame.image.load('bg.png')
right = pygame.image.load('right.png')
body = pygame.image.load('body.png')
food = pygame.image.load('apple.png')
x=240
y=120
# 创建一个窗口
??
\ No newline at end of file
screen = pygame.display.set_mode((660,480))
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
exit()
screen.blit(background,(0,0))
for i in range(8):
screen.blit(right,(x,y))
screen.blit(body,(x-30,y))
screen.blit(body,(x-60,y))
screen.blit(body,(x-60,y-30))
screen.blit(food,(360,240))
x=x+30
y=y+30
pygame.display.update()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment