コード例 #1
0
 public Note(Part part)
 {
     Part       = part;
     Modulation = 0;
     Intensity  = 100;
     Velocity   = 100;
     Length     = Settings.Current.CurrentNoteLength;
     Lyric      = Settings.Current.DefaultLyric;
     PitchBend  = new PitchBendExpression();
 }
コード例 #2
0
ファイル: UNote.cs プロジェクト: KineticIsEpic/OpenUtau
 private UNote() {
     PitchBend = new PitchBendExpression(this);
     Vibrato = new VibratoExpression(this);
     Phonemes.Add(new UPhoneme() { Parent = this, PosTick = 0 });
 }