├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── BFI_VRCFT_Module.sln ├── BFI_VRCFT_Module ├── Assets │ ├── BFI_logo alt.png │ ├── BFI_logo master.png │ └── BFI_logo.png ├── BFI_VRCFT_Module.cs ├── BFI_VRCFT_Module.csproj ├── BFI_VRCFT_Module.generated.sln ├── JsonParser.cs ├── OscReceiver.cs └── VRCFaceTracking.Core.dll ├── LICENSE.txt ├── ReadMe.md ├── config.json ├── debugTools ├── fakeBFI.py └── readme ├── media ├── BFI_VRCFT_thumbnail.pdn ├── BFI_VRCFT_thumbnail.png ├── VORConfigBFI.png ├── VORConfigVRCFT.png ├── anger.gif ├── apeshape.gif ├── cheekpuff.gif ├── cringe.gif ├── eyeclosed.gif ├── frown.gif └── smile.gif └── res ├── module.json └── moduleupdate.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: hashedits -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/.gitignore -------------------------------------------------------------------------------- /BFI_VRCFT_Module.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module.sln -------------------------------------------------------------------------------- /BFI_VRCFT_Module/Assets/BFI_logo alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/Assets/BFI_logo alt.png -------------------------------------------------------------------------------- /BFI_VRCFT_Module/Assets/BFI_logo master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/Assets/BFI_logo master.png -------------------------------------------------------------------------------- /BFI_VRCFT_Module/Assets/BFI_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/Assets/BFI_logo.png -------------------------------------------------------------------------------- /BFI_VRCFT_Module/BFI_VRCFT_Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/BFI_VRCFT_Module.cs -------------------------------------------------------------------------------- /BFI_VRCFT_Module/BFI_VRCFT_Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/BFI_VRCFT_Module.csproj -------------------------------------------------------------------------------- /BFI_VRCFT_Module/BFI_VRCFT_Module.generated.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/BFI_VRCFT_Module.generated.sln -------------------------------------------------------------------------------- /BFI_VRCFT_Module/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/JsonParser.cs -------------------------------------------------------------------------------- /BFI_VRCFT_Module/OscReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/OscReceiver.cs -------------------------------------------------------------------------------- /BFI_VRCFT_Module/VRCFaceTracking.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/BFI_VRCFT_Module/VRCFaceTracking.Core.dll -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/ReadMe.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/config.json -------------------------------------------------------------------------------- /debugTools/fakeBFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/debugTools/fakeBFI.py -------------------------------------------------------------------------------- /debugTools/readme: -------------------------------------------------------------------------------- 1 | This is a dummy app to emulate BFI actions -------------------------------------------------------------------------------- /media/BFI_VRCFT_thumbnail.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/BFI_VRCFT_thumbnail.pdn -------------------------------------------------------------------------------- /media/BFI_VRCFT_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/BFI_VRCFT_thumbnail.png -------------------------------------------------------------------------------- /media/VORConfigBFI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/VORConfigBFI.png -------------------------------------------------------------------------------- /media/VORConfigVRCFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/VORConfigVRCFT.png -------------------------------------------------------------------------------- /media/anger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/anger.gif -------------------------------------------------------------------------------- /media/apeshape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/apeshape.gif -------------------------------------------------------------------------------- /media/cheekpuff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/cheekpuff.gif -------------------------------------------------------------------------------- /media/cringe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/cringe.gif -------------------------------------------------------------------------------- /media/eyeclosed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/eyeclosed.gif -------------------------------------------------------------------------------- /media/frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/frown.gif -------------------------------------------------------------------------------- /media/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/media/smile.gif -------------------------------------------------------------------------------- /res/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/res/module.json -------------------------------------------------------------------------------- /res/moduleupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HashEdits/BFI_VRCFT_Module/HEAD/res/moduleupdate.py --------------------------------------------------------------------------------