Commit 7c0dc73f by BellCodeEditor

save project

parent cb9a91e0
Showing with 5 additions and 1 deletions
import pygame
from pygame import locals
import random
pygame.init() # 初始化
# 创建一个窗口
......@@ -22,6 +22,10 @@ index = 0
jumpState = "runing"
y = 400
t = 30
obstacle = random.choice([bush,stone,cacti])
rect = obstacle.get_rect()
rect.x = 1000
rect.y = 500 - rect.height
while True:
for event in pygame.event.get():
......
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