Expert-sleepers Augustus Loop v2.3.0 Instrukcja Użytkownika Strona 61

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 76
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 60
E.g.
sendOSC( "osc.udp://localhost:7001", "/foo" )
sendOSC( "osc.udp://localhost:7001", "/foo", { 3, 5.2, "hello" } )
sendOSC( "osc.udp://localhost:7001", "/foo", "ifs", { 3, 5.2, "hello" } )
Note that the second example sends two floats and a string; the third sends an integer, a
float and a string.
requestAllNoteOn( function )
Request that the given function be called in response to any MIDI note on event. E.g.
local function handleNoteOn( channel, noteNumber, velocity )
!-- do stuff
end
requestAllNoteOn( handleNoteOn )
requestAllNoteOff( function )
Request that the given function be called in response to any MIDI note off event. E.g.
local function handleNoteOff( channel, noteNumber, velocity )
!-- do stuff
end
requestAllNoteOff( handleNoteOff )
requestAllCC( function )
Request that the given function be called in response to any MIDI continuous controller
(CC) event. E.g.
local function handleCC( channel, cc, value )
!-- do stuff
end
requestAllCC( handleCC )
requestAllNRPN( function )
Request that the given function be called in response to any MIDI non-registered parame-
ter number (NRPN) event. E.g.
local function handleNRPN( channel, nrpn, value )
!-- do stuff
end
requestAllNRPN( handleNRPN )
requestAllProgramChange( function )
Request that the given function be called in response to any MIDI program change event.
E.g.
local function handlePC( channel, value )
!-- do stuff
end
requestAllProgramChange( handlePC )
Przeglądanie stron 60
1 2 ... 56 57 58 59 60 61 62 63 64 65 66 ... 75 76

Komentarze do niniejszej Instrukcji

Brak uwag