No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
|IsSending|Bool|Set to true if this OSC Sender is sending data. | |IsSending|Bool|Set to true if this OSC Sender is sending data. | ||
|SendMode|OSC_SendMode|The Mode in which data is sent to the OSC Server. See [[#Behavior]] | |SendMode|OSC_SendMode|The Mode in which data is sent to the OSC Server. See [[#Behavior]] | ||
|AutoResendInterval|Float| | |AutoResendInterval|Float|Data will automatically be resent at this interval if it is set. In Seconds. See [[#Behavior]] | ||
}} | }} | ||
== Behavior == | == Behavior == | ||
Once <code>Handling User</code> and <code>Uri</code> are set, this component will try to connect to the OSC Server at the URL provided. To actually receive data, you should use the Value components: | |||
* [[Component:OSC_Value]] | |||
* [[Component:OSC_Field]] | |||
== Examples == | == Examples == | ||
* See [[OSC]] | |||
== See Also == | == See Also == | ||
* [[Component:OSC_Receiver]] | |||
[[Category:Components:Network:OSC{{#translation:}}|OSC Sender]] | [[Category:Components:Network:OSC{{#translation:}}|OSC Sender]] | ||
[[Category:Components{{#translation:}}|OSC Sender]] | [[Category:Components{{#translation:}}|OSC Sender]] | ||
[[Category:ComponentStubs]] | [[Category:ComponentStubs]] |
Revision as of 19:52, 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. |
HandlingUser
|
direct UserRef | |
AccessReason
|
String | Displayed in the Host Access Dialog when a connection is trying to be established. |
URL
|
Uri | Uri of the OSC Server to connect to, must be in the format osc://<ip>:<port> |
IsSending
|
Bool | Set to true if this OSC Sender is sending data. |
SendMode
|
OSC_SendMode | The Mode in which data is sent to the OSC Server. See #Behavior |
AutoResendInterval
|
Float | Data will automatically be resent at this interval if it is set. In Seconds. See #Behavior |
Behavior
Once Handling User
and Uri
are set, this component will try to connect to the OSC Server at the URL provided. To actually receive data, you should use the Value components:
Examples
- See OSC