Commit b97768ff by BellCodeEditor

save project

parent 6b9592d2
Showing with 4 additions and 0 deletions
...@@ -34,6 +34,10 @@ while True: ...@@ -34,6 +34,10 @@ while True:
centur[1] = centur[0]+1 centur[1] = centur[0]+1
# 将背景图画上去 # 将背景图画上去
screen.blit(background,(0,0)) screen.blit(background,(0,0))
curr_pos = []
for cube in curr_shape:
aa = (cube[0] + center[0],cube[1] + center[1])
curr_pos.append(aa)
# 得分 # 得分
score_text=font.render(str(score),true,(0,0,0)) score_text=font.render(str(score),true,(0,0,0))
screen.blit(score_text,(350,70))# 刷新画面 screen.blit(score_text,(350,70))# 刷新画面
......
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