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

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 76
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 51
sendOSC( address, path [, format ] [, values ] )
Sends an OSC message. ‘values’ is an optional array of data items to be sent with the mes-
sage. If ‘values’ is used, then ‘format’ is an optional string that indicates how the items in
the values array should be interpreted. This is required because Lua treats all numbers as
being of the same type, whereas OSC differentiates between integers and floating point
values. The number of characters in ‘format’ should be the same as the number of values.
Each character may be one of ‘i’ (integer), ‘f’ (float) or ‘s’ (string).
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.
group:setVisible() / group:isVisible()
control:setVisible() / control:isVisible()
control:setState() / control:getState()
These functions described above can also be called from luaButton functions.
redrawLabels()
This function should be called after you’ve changed the visibility of any groups. E.g.
recordOffsetGroup:setVisible( v )
redrawLabels()
Przeglądanie stron 51
1 2 ... 47 48 49 50 51 52 53 54 55 56 57 ... 75 76

Komentarze do niniejszej Instrukcji

Brak uwag