Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
pygame_lesson2_diy2
This project
Loading...
Sign in
Toggle navigation
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
8f3df3a2
authored
Jul 03, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
cfa9ba0b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
body.png
bomb.png
right.png
snake.py
body.png
View file @
8f3df3a2
1.4 KB
|
W:
|
H:
888 Bytes
|
W:
|
H:
2-up
Swipe
Onion skin
bomb.png
0 → 100644
View file @
8f3df3a2
1.54 KB
right.png
View file @
8f3df3a2
2.05 KB
|
W:
|
H:
1.39 KB
|
W:
|
H:
2-up
Swipe
Onion skin
snake.py
View file @
8f3df3a2
...
...
@@ -10,7 +10,7 @@ screen = pygame.display.set_mode((660, 480))
# 背景
background
=
pygame
.
image
.
load
(
'bg.png'
)
right
=
pygame
.
image
.
load
(
'right.png'
)
food
=
pygame
.
image
.
load
(
'apple
.png'
)
bomb
=
pygame
.
image
.
load
(
'bomb
.png'
)
body
=
pygame
.
image
.
load
(
'body.png'
)
x
=
210
y
=
120
...
...
@@ -21,6 +21,9 @@ while True:
# 接收到退出事件后退出程序
exit
()
x
=
x
+
30
for
i
in
range
(
len
(
liebiao
)
-
1
):
screen
.
blit
(
body
,
liebiao
[
i
])
liebiao
.
append
((
x
,
y
))
liebiao
.
pop
(
0
)
zhen
=
pygame
.
time
.
Clock
()
...
...
@@ -33,7 +36,7 @@ while True:
screen
.
blit
(
body
,
liebiao
[
-
3
])
screen
.
blit
(
body
,
liebiao
[
-
4
])
# 将果实画上去
screen
.
blit
(
food
,
(
360
,
300
))
screen
.
blit
(
bomb
,
(
360
,
300
))
# 刷新画面
pygame
.
display
.
update
()
zhen
.
tick
(
5
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment