├── .gitignore ├── FriesBSCam.csproj ├── FriesBSCam.sln ├── Properties └── AssemblyInfo.cs ├── README.md ├── Settings ├── _cameravalues.txt ├── _darkside.115c2.713E301FC4F774EDF4EA1001A19DD5BF7E3F4CE6.txt ├── _endgame.affa.C28FFC53ACD2C89329B5A7FF3D57A2B32BCA416E.txt ├── _highscore360.d995.F5D25181F8518182EF77665126A0497123010A55.txt ├── _lonely.13e68.4D1F8FE7BD45476346D1C9B1E61DBFFC73F95023.txt ├── _lookatthesky.1421c.825DBD980EADCEABA54C8E9D8E68F93A1B4CB029.txt ├── _neosoul.17da1.458FFEFFBCF9ECA6F2D5C4B5E0D6CF1DCCF17486.txt ├── _sos.16016.C9860F851DB19A9224136CBA3A78C428DA2A7224.txt ├── _spectre.e01a.F11409E4E08F2463BE65C0E56DFC6F6B00E25AEB.txt ├── _technicolor.10842.0488692D1D2FA080FE429EE15EFC84DA40BC78D2.txt ├── _try.14d64.6DB3D9DA217B41607D250AA7A28C5DC26A082188.txt └── settings.txt └── Src ├── AttributeParser.cs ├── BeatSaberStatus.cs ├── Camera ├── CameraData.cs └── CameraTransition.cs ├── DefaultConfig.txt └── MyCameraPlugin.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/.gitignore -------------------------------------------------------------------------------- /FriesBSCam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/FriesBSCam.csproj -------------------------------------------------------------------------------- /FriesBSCam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/FriesBSCam.sln -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/README.md -------------------------------------------------------------------------------- /Settings/_cameravalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_cameravalues.txt -------------------------------------------------------------------------------- /Settings/_darkside.115c2.713E301FC4F774EDF4EA1001A19DD5BF7E3F4CE6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_darkside.115c2.713E301FC4F774EDF4EA1001A19DD5BF7E3F4CE6.txt -------------------------------------------------------------------------------- /Settings/_endgame.affa.C28FFC53ACD2C89329B5A7FF3D57A2B32BCA416E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_endgame.affa.C28FFC53ACD2C89329B5A7FF3D57A2B32BCA416E.txt -------------------------------------------------------------------------------- /Settings/_highscore360.d995.F5D25181F8518182EF77665126A0497123010A55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_highscore360.d995.F5D25181F8518182EF77665126A0497123010A55.txt -------------------------------------------------------------------------------- /Settings/_lonely.13e68.4D1F8FE7BD45476346D1C9B1E61DBFFC73F95023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_lonely.13e68.4D1F8FE7BD45476346D1C9B1E61DBFFC73F95023.txt -------------------------------------------------------------------------------- /Settings/_lookatthesky.1421c.825DBD980EADCEABA54C8E9D8E68F93A1B4CB029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_lookatthesky.1421c.825DBD980EADCEABA54C8E9D8E68F93A1B4CB029.txt -------------------------------------------------------------------------------- /Settings/_neosoul.17da1.458FFEFFBCF9ECA6F2D5C4B5E0D6CF1DCCF17486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_neosoul.17da1.458FFEFFBCF9ECA6F2D5C4B5E0D6CF1DCCF17486.txt -------------------------------------------------------------------------------- /Settings/_sos.16016.C9860F851DB19A9224136CBA3A78C428DA2A7224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_sos.16016.C9860F851DB19A9224136CBA3A78C428DA2A7224.txt -------------------------------------------------------------------------------- /Settings/_spectre.e01a.F11409E4E08F2463BE65C0E56DFC6F6B00E25AEB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_spectre.e01a.F11409E4E08F2463BE65C0E56DFC6F6B00E25AEB.txt -------------------------------------------------------------------------------- /Settings/_technicolor.10842.0488692D1D2FA080FE429EE15EFC84DA40BC78D2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_technicolor.10842.0488692D1D2FA080FE429EE15EFC84DA40BC78D2.txt -------------------------------------------------------------------------------- /Settings/_try.14d64.6DB3D9DA217B41607D250AA7A28C5DC26A082188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/_try.14d64.6DB3D9DA217B41607D250AA7A28C5DC26A082188.txt -------------------------------------------------------------------------------- /Settings/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Settings/settings.txt -------------------------------------------------------------------------------- /Src/AttributeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/AttributeParser.cs -------------------------------------------------------------------------------- /Src/BeatSaberStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/BeatSaberStatus.cs -------------------------------------------------------------------------------- /Src/Camera/CameraData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/Camera/CameraData.cs -------------------------------------------------------------------------------- /Src/Camera/CameraTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/Camera/CameraTransition.cs -------------------------------------------------------------------------------- /Src/DefaultConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/DefaultConfig.txt -------------------------------------------------------------------------------- /Src/MyCameraPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friesofdoom/FriesBSCam/HEAD/Src/MyCameraPlugin.cs --------------------------------------------------------------------------------