Commit 42fc43ce by BellCodeEditor

save project

parent c6b55540
Showing with 1 additions and 1 deletions
......@@ -98,7 +98,7 @@ while True:
current_shape = shape[index]
color = random.choice(cube_colors) # 随机选取一种颜色
count += 1
if count % FPS == 0: # 降落速度的算式
if count % 10 == 0: # 降落速度的算式
center[0] = center[0] + 1
if check(center) == False:
center[0] = center[0] - 1
......
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