Beispiel #1
0
 public NoteParam(string name, BaseInstrument paramOwner)
     : base(name, paramOwner, 0.0f, 127.0f, -1, -1)
 {
     m_chordNotes = new List <Note>();
     m_mainNote   = new Note(m_name, m_owner);
 }
Beispiel #2
0
 public GenericMusicParam(string name, BaseInstrument paramOwner, float min, float max, int deviceIndex, int parameterIndex)
     : base(name, paramOwner, min, max, deviceIndex, parameterIndex)
 {
 }
Beispiel #3
0
 public Note(string name, BaseInstrument paramOwner)
     : base(name, paramOwner, 0.0f, 127.0f, -1, -1)
 {
 }
Beispiel #4
0
 public InstrumentClip(string name, BaseInstrument paramOwner, int clipScene)
     : base(name, paramOwner, 0, 127, -1, -1)
 {
     scene = clipScene;
 }
Beispiel #5
0
 public ToggleParam(string name, BaseInstrument paramOwner, int deviceIndex, int parameterIndex)
     : base(name, paramOwner, 0.0f, 1.0f, deviceIndex, parameterIndex)
 {
 }