Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
pygame_lesson7_diy4
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
f8ef2890
authored
2 years ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
b2adeb9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
my_game.py
my_game.py
View file @
f8ef2890
import
pygame
from
pygame
import
locals
import
random
pygame
.
init
()
# 初始化
# 创建一个窗口
...
...
@@ -22,8 +21,6 @@ index = 0
y
=
400
t
=
30
jumpState
=
"running"
obstacle
=
random
.
randint
(
stone
,
cacti
,
apple
)
while
True
:
for
event
in
pygame
.
event
.
get
():
...
...
@@ -35,13 +32,13 @@ while True:
jumpState
=
"up"
if
jumpState
==
"up"
:
if
y
>=
15
0
:
if
t
<=
0
:
y
-=
t
t
-=
2
else
:
jumpState
=
"down"
if
jumpState
==
"down"
:
if
y
<=
40
0
:
if
y
>=
3
0
:
y
+=
t
t
+=
2
else
:
...
...
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