No edit summary |
|||
Line 8: | Line 8: | ||
{{Table ComponentFields | {{Table ComponentFields | ||
|Handler|OSC_Handler|The [[Component:OSC_Receiver]] or [[Component:OSC_Sender]] to be used with this component. | |Handler|OSC_Handler|The [[Component:OSC_Receiver]] or [[Component:OSC_Sender]] to be used with this component. | ||
|Path|String|The OSC Path for this value | |Path|String|The OSC Path for this value. | ||
|ArgumentIndex|Int|For Multi-Dimensional OSC Values, this specifies which value to retrieve | |ArgumentIndex|Int|For [[OSC#Multi-Dimensional Values|Multi-Dimensional OSC Values]], this specifies which value to retrieve or send. | ||
|Value|'''T'''|TypeAdv3=true|The recieved OSC Value or the default value of the Type if there is no OSC data. | |Value|'''T'''|TypeAdv3=true|The recieved OSC Value or the default value of the Type if there is no OSC data. | ||
}} | }} |
Latest revision as of 20:02, 30 April 2024
Component image
This article or section is a Stub. You can help the Resonite Wiki by expanding it.
Usage
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. |
Handler
|
OSC_Handler | The Component:OSC_Receiver or Component:OSC_Sender to be used with this component. |
Path
|
String | The OSC Path for this value. |
ArgumentIndex
|
Int | For Multi-Dimensional OSC Values, this specifies which value to retrieve or send. |
Value
|
T | The recieved OSC Value or the default value of the Type if there is no OSC data. |
Behavior
Receiving
When Handler
, is set to a valid and IsListening
, OSC Reciever, if OSC Data is found at the specified Path
. The value from OSC will be shown in the Value
field.
Sending
When Handler
, is set to a valid, OSC Sender.
If the SendMode
of the OSC_Receiver, is set to SendAsBundles
, then it will bundle up all other OSC Value component's values and send them all as a bundle.
If the SendMode
of the OSC_Receiver, is set to SendIndividually
, then Resonite will send Value
, as an OSC message on the OSC Path in Path
.
Resonite will send data each time it changes or again every AutoResendInterval
on the OSC_Sender.
Examples
- See OSC