VTS-Sharp
Tom Farro
$0.0
(no ratings)
Date |
Price |
---|---|
日期和时间 |
价钱($) |
11/18(2021) |
0.0 |
11/19(2024) |
0.0 |
Jump AssetStore
A Unity C# client interface for creating VTube Studio Plugins with the official VTube Studio API.This is a library for integrating with VTube Studio, so naturally it will not do anything unless it is running alongside VTube Studio, which can be acquired for free on Steam.VTS-Sharp Unity C# client interface for creating VTube Studio Plugins with the official VTube Studio API!In order to start making a plugin, simply make a class which extends VTSPlugin. In your class, call the Initialize method. Pass in your preferred implementations of a JSON utility, of a websocket, and of a mechanism to store the authorization token. Specify what happens on a successful or unsuccessful initialization. That's it. From there, you can call any method found in the official VTube Studio API.You can find an example of custom plugin creation in the Examples folder, which also includes default implementations of the aforementioned initialization dependencies.Because this library simply acts as an client interface for the official API, please check out the official API's readme for in-depth explanations about the API functionality.Additionally, you can watch a video on getting started in under 90 seconds here.Lastly, the complete unabridged Readme for the library can be found here.Key features are:Ease of setup. No need to worry about WebSocket Connections or Token Authorization!Dependency-injection pattern allows for easy swapping of internals (if you want to!)Super lightweight