Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c9glax/vrcoscrouter
Simple OSC-Router for OSC-Programs that do not use OSC-Query.
https://github.com/c9glax/vrcoscrouter
osc oscquery vrc vrchat-osc vrchat-tool
Last synced: 7 days ago
JSON representation
Simple OSC-Router for OSC-Programs that do not use OSC-Query.
- Host: GitHub
- URL: https://github.com/c9glax/vrcoscrouter
- Owner: C9Glax
- License: gpl-3.0
- Created: 2024-07-08T22:57:38.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-08T23:04:41.000Z (6 months ago)
- Last Synced: 2024-11-07T04:09:35.807Z (about 2 months ago)
- Topics: osc, oscquery, vrc, vrchat-osc, vrchat-tool
- Language: C#
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VRCOSCRouter
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."
}
]
}
```