Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
pygame_lesson9_diy3
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
012c9d06
authored
Dec 26, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
7c8ec8fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
my_game.py
my_game.py
View file @
012c9d06
...
@@ -4,15 +4,8 @@ import random
...
@@ -4,15 +4,8 @@ import random
import
json
import
json
pygame
.
init
()
# 初始化
pygame
.
init
()
# 初始化
self
.
rect
.
x
=
1000
self
.
rect
.
y
=
500
-
self
.
rect
.
height
self
.
score
=
1
class
Player
(
pygame
.
sprite
.
Sprite
):
# 悟空
def
__init__
(
self
,
image
):
super
()
.
__init__
()
# 加载悟空精灵图像
class
Block
(
pygame
.
sprite
.
Sprite
):
# 障碍物精灵类
class
Block
(
pygame
.
sprite
.
Sprite
):
# 障碍物精灵类
def
__init__
(
self
,
image1
,
image2
,
image3
):
def
__init__
(
self
,
image1
,
image2
,
image3
):
super
()
.
__init__
()
super
()
.
__init__
()
...
@@ -21,6 +14,14 @@ class Block(pygame.sprite.Sprite): # 障碍物精灵类
...
@@ -21,6 +14,14 @@ class Block(pygame.sprite.Sprite): # 障碍物精灵类
# 根据障碍物位图的宽高设置矩形
# 根据障碍物位图的宽高设置矩形
self
.
rect
=
self
.
image
.
get_rect
()
self
.
rect
=
self
.
image
.
get_rect
()
# 障碍物绘制坐标
# 障碍物绘制坐标
self
.
rect
.
x
=
1000
self
.
rect
.
y
=
500
-
self
.
rect
.
height
self
.
score
=
1
class
Player
(
pygame
.
sprite
.
Sprite
):
# 悟空
def
__init__
(
self
,
image
):
super
()
.
__init__
()
# 加载悟空精灵图像
self
.
image
=
image
self
.
image
=
image
# image的get_rect()方法,可以返回pygame.Rect(0,0,图像宽,图像高)的对象
# image的get_rect()方法,可以返回pygame.Rect(0,0,图像宽,图像高)的对象
self
.
rect
=
self
.
image
.
get_rect
()
self
.
rect
=
self
.
image
.
get_rect
()
...
...
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