Commit 6bcc14c7 by BellCodeEditor

auto save

parent 52fdd242
Showing with 2 additions and 2 deletions
......@@ -87,9 +87,9 @@ while True:
states = True
center = [2, 8] # 第2行第8列
shape = random.choice(shape_list)
index = rendom.randint(0,len(shape)-1)
index = random.randint(0,len(shape)-1)
current_shape = shape[index]
color = rendom.choice(cube_colors)
color = random.choice(cube_colors)
count += 1
if count % FPS == 0:
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