git ssb

1+

Zach! / kriya-helper



Tree: 552ea90bc6ad550db1490b43e4db3d9a19075fb0

Files: 552ea90bc6ad550db1490b43e4db3d9a19075fb0 / intertwingled.py

395 bytesRaw
1import time
2import pyglet
3
4'''These are global variables for the whole kriya-helper '''
5
6def beginning():
7 chime = pyglet.media.load('sounds/starting_bell.wav', streaming=False)
8 chime.play()
9
10def transition():
11 chime = pyglet.media.load('sounds/kriya_chime.wav', streaming=False)
12 breath = 0
13
14 chime.play()
15 while breath != 1:
16 time.sleep(11.2)
17 breath += 1
18

Built with git-ssb-web