Exemple #1
0
 /// <summary>
 /// Creates a new instance of the FLuidSys.Note class.
 /// </summary>
 public Note()
 {
     UseDefaultVb    = true;
     VoiceProperties = new VoiceProp();
     Location        = 0;
     Length          = 1024;
     Velocity        = 100;
     Volume          = 100;
     Modulation      = 0;
     Args            = "B0";
 }
Exemple #2
0
 /// <summary>
 /// Create a new instance of the FluidSys.Note class using the
 /// specified VoiceProp.
 /// </summary>
 public Note(VoiceProp vProp)
 {
     UseDefaultVb    = true;
     VoiceProperties = vProp;
     Location        = 0;
     Length          = 1024;
     Velocity        = 100;
     Volume          = 100;
     Modulation      = 0;
     PortaLength     = 18;
     Args            = "B0";
 }