Upgrade to OPENRNDR 0.4 snapshot

This commit is contained in:
Edwin Jakobs
2021-06-22 11:08:07 +02:00
parent 579ddf9bb5
commit 9435907ef9
339 changed files with 460 additions and 497 deletions

24
orx-jvm/orx-osc/README.md Normal file
View File

@@ -0,0 +1,24 @@
# orx-osc
Open Sound Control makes it possible to send and receive messages
from other OSC enabled programs in the same or a different computer.
Used to create multi-application or multi-device software.
Can be used to remote control your program from a mobile device,
to produce sound in a audio programming environment, make games
and networked experiments.
Orx-osc is a wrapper around javaOSC
## Usage
```kotlin
// PORT IN and OUT: 57110
val osc = OSC()
osc.listen("/live/track2") {
// do something
}
osc.send("/maxmsp/filter", 500, "hz")
```