Show
Ignore:
Timestamp:
07/06/08 22:12:37 (5 years ago)
Author:
tekisuke
Message:

lang/actionscript/flmml/: 音量モードを変更するxコマンド実装。

Files:
1 modified

Legend:

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

    r14833 r15293  
    123123                                m_ch.setLpfFrqRes(e.getLPFFrq(), e.getLPFRes()); 
    124124                                break; 
     125                            case MStatus.VOL_MODE: 
     126                                m_ch.setVolMode(e.getVolMode()); 
     127                                break; 
    125128                            case MStatus.CLOSE: 
    126129                                m_ch.close(); 
     
    326329            e = new MEvent(); 
    327330            e.setLPFFRQRES(frq, res); 
     331            m_events.push(e); 
     332        } 
     333 
     334        public function recVolMode(m:int): void { 
     335            var e:MEvent = new MEvent(); 
     336            recDelta(e); 
     337            e.setVolMode(m); 
    328338            m_events.push(e); 
    329339        }