Fix orx-osc readme example (#239)

This commit is contained in:
Abe Pazos
2022-06-09 11:17:43 +00:00
committed by GitHub
parent a4bd0794de
commit 26d18af15f

View File

@@ -16,9 +16,11 @@ Orx-osc is a wrapper around javaOSC
// PORT IN and OUT: 57110
val osc = OSC()
osc.listen("/live/track2") {
osc.listen("/live/track2") { addr, msg ->
// do something
}
osc.send("/maxmsp/filter", 500, "hz")
```
For more examples please visit the [guide](https://guide.openrndr.org/OPENRNDRExtras/osc.html).