Commit 4ec565f1 by BellCodeEditor

save project

parent cf4ada3a
Showing with 10 additions and 0 deletions
......@@ -29,3 +29,13 @@ if play_button == stop.img:
angle+=1
FPS = pygame.time.Clock()
FPS.tick(60)
play_time = pygame.mixer.music.get_pos()
play_time = int(play_time/1000)
playM=play_time//60
playS=play_time%60
info=str(playM)+':'+str(playS)
music_m = music_lenth//60
music_s = music_lenth%60
if music_s<10:
music_s='0'+str(music_s)
info2=str(music_m)+':'str(music_s)
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