Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / pygame_lesson3_diy3

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit e14a0d36 authored a year ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 786209ac c346028l1354p256a13984/wx160274
Show whitespace changes
Inline Side-by-side
Showing with 4 additions and 3 deletions
  • snake.py
snake.py
View file @ e14a0d36
...@@ -25,7 +25,7 @@ apple_x = 360 ...@@ -25,7 +25,7 @@ apple_x = 360
apple_y = 360 apple_y = 360
setheading = "right" setheading = "right"
snake_head = right snake_head = right
score = 0
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type == locals.QUIT: if event.type == locals.QUIT:
...@@ -59,8 +59,8 @@ while True: ...@@ -59,8 +59,8 @@ while True:
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
if x == apple_x and y == apple_y: if x == apple_x and y == apple_y:
num1 = random.randint(1,16) apple_x = random.randint(1,16)
num2 = random.randint(1,16) apple_y = random.randint(1,16)
apple_x = num1 * 30 - 30 apple_x = num1 * 30 - 30
apple_y = num2 * 30 - 30 apple_y = num2 * 30 - 30
...@@ -79,3 +79,4 @@ while True: ...@@ -79,3 +79,4 @@ while True:
FPSCLOCK.tick(3) FPSCLOCK.tick(3)
info = "Score"+ str(score) info = "Score"+ str(score)
text = my_font.render(info, True, (0,0,0)) text = my_font.render(info, True, (0,0,0))
score.blit
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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