summaryrefslogtreecommitdiffstats
path: root/Images
Commit message (Collapse)AuthorAge
* String matching no longer relies on spacesyum2022-11-06
| | | | | | | | | | | Add a `matchStrings` which does basically the same thing as `matchStringList` except it doesn't split the input at space boundaries. I think this should work better for Japanese and Chinese, since they don't use spaces. Doesn't seem to cause any accuracy regressions for English. Also update the README.
* OSC controller uses one sync per region instead of 2yum2022-11-05
| | | | | | | | | | My theory as to why this seems to work: VRChat batches parameter updates together and applies them simultaneously. Thus we don't run into the expected failure mode where we update the prior region before paging over to the next region. * Fix beep feature * update the STT demo
* Add speech-to-text demoyum2022-11-04
|
* Add LICENSEyum2022-10-02
* Update README with contribution instructions & design details. * Add text-to-text demo gif * Document known Unity landmines in generate.sh.