Commit 62696035 by BellCodeEditor

save project

parent 5db8c976
Showing with 5 additions and 1 deletions
...@@ -25,6 +25,8 @@ pygame.mixer.music.set_volume(volume) ...@@ -25,6 +25,8 @@ pygame.mixer.music.set_volume(volume)
click = 0 click = 0
play_button = stop_img play_button = stop_img
angle = 0 angle = 0
bh = 10
x1 = 0
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type == locals.QUIT: if event.type == locals.QUIT:
...@@ -86,7 +88,9 @@ while True: ...@@ -86,7 +88,9 @@ while True:
new_logo = pygame.transform.rotate(logo_img, angle) new_logo = pygame.transform.rotate(logo_img, angle)
newRect = new_logo.get_rect(center=(320,200)) newRect = new_logo.get_rect(center=(320,200))
if click%2 == 0: if click%2 == 0:
angle += 1 x1 = x1 + 1
if x1 % 3 == 0:
angle += 1
screen.blit(bg_img, (0, 0)) screen.blit(bg_img, (0, 0))
screen.blit(play_button, (270, 330)) screen.blit(play_button, (270, 330))
screen.blit(new_logo,newRect) screen.blit(new_logo,newRect)
......
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