1 /** 2 * This file is part of the Web Enabled Audio and Sound Enhancement Library (aka the Weasel audio library) Copyright 2011 - 2013 Warren Willmey. It is covered by the GNU General Public License version 3 as published by the Free Software Foundation, you should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. 3 */ 4 5 if( undefined == window.weasel ) window.weasel = {}; 6 7 // --------------------------------------------------------------------------- 8 /** Object containing constants that a Mahoney & Kaktus Noisetracker 2.0 module requires, in 9 * addition to those defined in FormatUltimateSoundTracker121, FormatDOCSoundTracker9, FormatDOCSoundTracker22, Spreadpoint Soundtracker 2.3, FormatNoiseTracker11. 10 * 11 * @constructor 12 * @const 13 */ 14 weasel.FormatNoiseTracker20 = 15 { 16 /** The supported effects in a Mahoney & Kaktus Noisetracker 2.0 module in addition to those in Noisetracker 1.1, Spreadpoint Soundtracker 2.3, DOC Soundtracker 2.2 & DOC Soundtracker 9. 17 * 18 * @const 19 * @enum {int} 20 */ 21 Effects: { 22 TonePortamentoAndVolumeSlide: 5 23 , VibratoAndVolumeSlide : 6 24 } 25 26 };