Commit a3771527 by BellCodeEditor

auto save

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