From b7a6ecf47a6090b5fa4566f9a5e1147d1a099ba3 Mon Sep 17 00:00:00 2001 From: Oli Date: Wed, 18 Jul 2007 23:04:25 +0000 Subject: Merge branch 'master' of git+ssh://olipet@dev.laptop.org/git/projects/tamtam --- (limited to 'Config.py') diff --git a/Config.py b/Config.py index 23bc1f0..704ce2c 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 -- cgit v0.9.1