Changeset 14833

Show
Ignore:
Timestamp:
06/29/08 16:23:07 (5 years ago)
Author:
tekisuke
Message:

lang/actionscript/flmml/: 終了処理を再修正。処理の仕方を思い出しました・・・。

Location:
lang/actionscript/flmml/trunk/src
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/actionscript/flmml/trunk/src/com/txt_nifty/sketch/flmml/MChannel.as

    r14831 r14833  
    9696        public function close():void { 
    9797            noteOff(); 
     98            m_filter.setSwitch(0); 
    9899        } 
    99100        public function setNoiseFreq(frequency:Number):void { 
  • lang/actionscript/flmml/trunk/src/com/txt_nifty/sketch/flmml/MTrack.as

    r14830 r14833  
    238238        public function recTempo(globalTick:uint, tempo:Number):void { 
    239239            var e:MEvent = new MEvent(); 
     240            recDelta(e); 
    240241            e.setTempo(tempo); 
    241242            recGlobal(globalTick, e); 
     
    320321        public function recLPF(swt:int, amt:int, frq:int, res:int):void { 
    321322            var e:MEvent = new MEvent(); 
     323            recDelta(e); 
    322324            e.setLPFSWTAMT(swt, amt); 
    323325            m_events.push(e); 
     
    329331        public function recClose():void { 
    330332            var e:MEvent = new MEvent(); 
     333            recDelta(e); 
    331334            e.setClose(); 
    332335            m_events.push(e);