Compare commits
2 Commits
420cf9493b
...
master
Author | SHA1 | Date | |
---|---|---|---|
fd05e59b79 | |||
80d0e805be |
26
README.md
26
README.md
@ -1,3 +1,27 @@
|
|||||||
# VRCOSCRouter
|
# VRCOSCRouter
|
||||||
|
|
||||||
Simple OSC-Router for OSC-Programs that do not use OSC-Query.
|
Simple OSC-Router for OSC-Programs that do not use OSC-Query.
|
||||||
|
Can also translate Endpoint names for programs that have hard-coded parameters.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Place as many `xxx.json` files as you want in the same folder as the executable.
|
||||||
|
Each file represents a OSC-Program you want to route.
|
||||||
|
|
||||||
|
### Example `Program.json`
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"Name": "Program name",
|
||||||
|
"Ip": "127.0.0.1",
|
||||||
|
"SendPort": 8000,
|
||||||
|
"ReceivePort": 8001,
|
||||||
|
"Endpoints": [
|
||||||
|
{
|
||||||
|
"ProgramEndpoint": "/avatar/parameters/What_The_Program_Is_Sending",
|
||||||
|
"VrcEndpoint": "/avatar/parameters/Avatar_Parameter",
|
||||||
|
"Type": "System.Single/System.String/etc."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
@ -28,6 +28,6 @@
|
|||||||
"VrcEndpoint": "/avatar/parameters/FT/v2/EyeLidRight",
|
"VrcEndpoint": "/avatar/parameters/FT/v2/EyeLidRight",
|
||||||
"ProgramEndpoint": "/avatar/parameters/RightEyeLidExpandedSqueeze",
|
"ProgramEndpoint": "/avatar/parameters/RightEyeLidExpandedSqueeze",
|
||||||
"Type": "System.Single"
|
"Type": "System.Single"
|
||||||
},
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Reference in New Issue
Block a user