The Documents for VRCOscLib.
What is the VRCOscLib?
VRCOscLib is a C# library designed for VRChat (VRC) developers to simplify OSC (Open Sound Control) communication within their projects. This library streamlines integrating OSC into VRChat avatars or worlds, enabling features like triggering animations, syncing with everything, or controlling external tools.
Quick Start Notes:
- Create new C# Project.
- Add NuGet package "VRCOscLib"
- Done!
!ATTENTION!: Enable OSC in VRChat!
Quick Start at The Console Project
- Create Project
dotnet new console dotnet add package vrcosclib
- Edit
Program.cs
using BuildSoft.VRChat.Osc.Chatbox; Console.WriteLine("The 'Hello World!' message is displayed in the chatbox."); OscChatbox.SendMessage("Hello World!", direct: true);
- Run Program
dotnet run