Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
pygame_lesson8_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
1a1e4559
authored
2 years ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
ffdc3245
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
diy1.py
diy1.py
View file @
1a1e4559
...
...
@@ -47,6 +47,8 @@ bg_x = 0
road_x
=
0
time
=
0
score
=
0
speed
=
8
old_score
=
score
# 创建障碍物
#obstacle = Block(bush,cacti,stone)
basic_font
=
pygame
.
font
.
Font
(
'STKAITI.TTF'
,
18
)
...
...
@@ -60,7 +62,7 @@ while True:
if
jumpState
==
"runing"
:
if
event
.
key
==
locals
.
K_SPACE
:
jumpState
=
"up"
speed
=
8
+
score
//
3
wukong
=
Player
(
hero
[
index
])
if
jumpState
==
"runing"
:
# 跑步状态下
index
+=
1
...
...
@@ -120,6 +122,8 @@ while True:
score
+=
sprite
.
score
sprite
.
score
=
0
print
(
score
)
if
old_score
>
score
:
surf_score
=
basic_font
.
render
(
'分数'
+
str
(
score
),
True
,(
255
,
255
,
255
))
screen
.
blit
(
surf_score
,(
880
,
20
))
# ++++++++++++++++++++++
...
...
This diff is collapsed.
Click to expand it.
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