Commit 424186b2 by BellCodeEditor

save project

parent ca6d8145
Showing with 4 additions and 0 deletions
...@@ -86,6 +86,10 @@ while True: ...@@ -86,6 +86,10 @@ while True:
play_time = pygame.mixer.music.get_pos() play_time = pygame.mixer.music.get_pos()
play_time = int(play_time/1000) play_time = int(play_time/1000)
play_m = play_img//60
play_s = play_ime % 60
info = str(play_m) + ":" + str(play_s)
print(play_time) print(play_time)
new_logo = pygame.transform.rotate(logo_img, angle) new_logo = pygame.transform.rotate(logo_img, angle)
newRect = new_logo.get_rect(center=(300,200)) newRect = new_logo.get_rect(center=(300,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