Commit ab41bfce by BellCodeEditor

save project

parent 6ce42d3e
Showing with 7 additions and 0 deletions
...@@ -76,6 +76,13 @@ while True: ...@@ -76,6 +76,13 @@ while True:
click += 2 click += 2
else: else:
click += 1 click += 1
music_m = music_length//60
music_s = music_length%60
if music_s < 10:
music_s = "0" + str(music_s)
info2 = str(music_m)+":"+str(music_s)
angle=0 angle=0
new_logo=pygame.transform.rotate(logo_img,angle) new_logo=pygame.transform.rotate(logo_img,angle)
newRect=logo_img.get_rect(center=(320,200)) newRect=logo_img.get_rect(center=(320,200))
......
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