Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Config.py
diff options
context:
space:
mode:
authorJames <olpc@xo-05-28-3A.localdomain>2007-07-18 22:54:27 (GMT)
committer James <olpc@xo-05-28-3A.localdomain>2007-07-18 22:54:27 (GMT)
commit610b262bb15f09ae93faa5291f1190a9e0fafa6a (patch)
tree7816015d9c7bd5c91620e4b37fa92ad42a0a7a20 /Config.py
parent350b3270ad715b6e6aa6fbd7a22e3aeae44504ac (diff)
partial upgrade to instrument db
Diffstat (limited to 'Config.py')
-rw-r--r--Config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Config.py b/Config.py
index 97ddbc5..9ab90b9 100644
--- a/Config.py
+++ b/Config.py
@@ -62,6 +62,11 @@ PLUGIN_NPERIODS = 2
##############
## SOUNDS
##############
+KIT_ELEMENT = 24 * [0]
+for i in range(0,13):
+ KIT_ELEMENT += 2 * [i]
+KIT_ELEMENT = tuple(KIT_ELEMENT)
+
class Instrument:
def __init__( self, name, instrumentId, csoundInstrumentId, instrumentRegister, soundClass, category, loopStart, loopEnd, crossDur, kit = None ):
self.name = name