-
Notifications
You must be signed in to change notification settings - Fork 22
AN_OSCList
maybites edited this page Jan 19, 2020
·
2 revisions

OSCList is a general use node and can handle all sort of messages.
-
default: default value needs to be inserted like a list:
-
[0, 0]or -
['undefined']or [1, 'text', 'moretext']
-
- make string: transforms the incoming message into a string.
- address: OSC address
-
arg[idx]: message argument indices define which arguments should be passed on.
-
()all arguments are passed on -
(0)only arg0 is passed on -
(0, 1, 2)arg0, arg1 and arg2 are passed on -
(3, 0, 1, 2)reordering the arguments toarg3 arg0 arg1 arg2
-
-
direction: message direction
- INPUT: only listening to OSC messages with the specified address
- OUTPUT: only sending OSC messages with the specified address.