Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/audaspace/bindings/python/examples/simple.py')
-rw-r--r--extern/audaspace/bindings/python/examples/simple.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/extern/audaspace/bindings/python/examples/simple.py b/extern/audaspace/bindings/python/examples/simple.py
deleted file mode 100644
index 7aa45b41042..00000000000
--- a/extern/audaspace/bindings/python/examples/simple.py
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/python
-import aud, time
-device = aud.Device()
-sine = aud.Sound.sine(440)
-square = sine.threshold()
-handle = device.play(square)
-time.sleep(3)