Пример #1
0
        internal SuperNATURALDrumKit(TemporaryTone tone) : base(tone.Device)
        {
            Address += tone.Address;

            Common = new SuperNATURALDrumKitCommon(this);
            CompEQ = new DrumKitCommonCompEQ(this);
            Notes  = new SuperNATURALDrumKitNotes(this);
        }
Пример #2
0
        public PCMDrumKit(TemporaryTone tone) : base(tone.Device, false)
        {
            Address += tone.Address;

            IsEditable = tone.IsEditable;

            if (IsEditable)
            {
                Common   = new PCMDrumKitCommon(this);
                CompEQ   = new DrumKitCommonCompEQ(this);
                Partials = new PCMDrumKitPartials(this);
                Common02 = new PCMDrumKitCommon02(this);
            }
            else
            {
                IsInitialized = true;
            }
        }