Résumé
Adds DataContainers, PhysBones 1.1 ('Squishy PhysBones'), AsyncGPUReadback, and more.
Features
-
DataContainers! Lists, Dictionaries and JSON for Udon!
- Added DataLists and DataDictionaries, giving Udon functionality similar to Lists and Dictionaries.
- Lists and dictionaries typically need to support Generics, and Udon does not support them, so this is being done by putting your data into DataTokens first, which are able to store any value.
- Added VRCJSON, a helper class that can convert JSON strings (such as those received from Remote String Loading to and from DataLists and DataDictionaries.
- Read the Data Containers / VRCJSON docs page to learn more.
- Added DataLists and DataDictionaries, giving Udon functionality similar to Lists and Dictionaries.
-
AsyncGPUReadback! This allows you to read back data from GPU and shaders without a heavy performance cost
- Adds the
VRCAsyncGPUReadback.Request
function and correspondingOnAsyncGpuReadbackComplete
event - These read data from the GPU into CPU memory without too much of a performance impact, at the expense of delaying the data for one or more frames
- Check the ASyncGPUReadback docs for more info.
- Adds the