Stage Select #1
1 changed files with 8 additions and 2 deletions
10
r3.py
10
r3.py
|
@ -245,7 +245,10 @@ wall1 = Wallh(-100,-200)
|
||||||
wall2 = Wallh(2150,-200)
|
wall2 = Wallh(2150,-200)
|
||||||
wall3 = Wallv(-200,-200)
|
wall3 = Wallv(-200,-200)
|
||||||
wall4 = Wallv(-200,800)
|
wall4 = Wallv(-200,800)
|
||||||
background = Background('backgrounds/galaxy.png')
|
if int(datetime.datetime.utcnow().timestamp() % 2) == 1:
|
||||||
|
background = Background('backgrounds/wormhole.png')
|
||||||
|
else:
|
||||||
|
background = Background('backgrounds/galaxy.png')
|
||||||
#crash = Crash()
|
#crash = Crash()
|
||||||
#antenna = Antenna()
|
#antenna = Antenna()
|
||||||
running = True
|
running = True
|
||||||
|
@ -304,7 +307,10 @@ while running:
|
||||||
wall2 = Wallh(2150,-200)
|
wall2 = Wallh(2150,-200)
|
||||||
wall3 = Wallv(-200,-200)
|
wall3 = Wallv(-200,-200)
|
||||||
wall4 = Wallv(-200,800)
|
wall4 = Wallv(-200,800)
|
||||||
background = Background('backgrounds/galaxy.png')
|
if int(datetime.datetime.utcnow().timestamp() % 2) == 1:
|
||||||
|
background = Background('backgrounds/wormhole.png')
|
||||||
|
else:
|
||||||
|
background = Background('backgrounds/galaxy.png')
|
||||||
live = True
|
live = True
|
||||||
complete = False
|
complete = False
|
||||||
if music:
|
if music:
|
||||||
|
|
Loading…
Reference in a new issue