├── .gitignore ├── .gitmodules ├── ActionMenuUtils ├── ActionMenuAPI.cs ├── ActionMenuUtils.csproj ├── Main.cs ├── ModSettings.cs └── icons ├── CHANGELOG.md ├── Common ├── _dummy2_.dll └── _dummy_.dll ├── Directory.Build.props ├── ILRepack ├── ILRepack.Lib.MSBuild.Task.dll ├── ILRepack.Lib.MSBuild.Task.targets └── ILRepack.dll ├── IntegrityCheckGenerator ├── IntegrityCheckGenerator.cs └── IntegrityCheckGenerator.csproj ├── IntegrityCheckWeaver ├── DummyThree.cs ├── IntegrityCheckWeaver.csproj ├── Program.cs └── Utils.cs ├── LICENSE ├── Libs └── .here ├── README.md ├── StandaloneThirdPerson ├── CameraBehindMode.cs ├── CameraMode.cs ├── Main.cs ├── ModSettings.cs ├── QMEnableDisableListener.cs ├── StandaloneThirdPerson.csproj └── Utils.cs ├── UpdateChecker ├── Main.cs ├── Mod.cs ├── ModVersion.cs └── UpdateChecker.csproj ├── VRChatMods.sln └── WorldPredownload ├── Cache └── CacheManager.cs ├── Constants.cs ├── DownloadManager ├── DownloadComplete.cs ├── DownloadInfo.cs ├── DownloadProgress.cs ├── DownloadType.cs └── WorldDownloadManager.cs ├── Helpers ├── Delegates.cs ├── ExtensionMethods.cs ├── UserAgent.cs ├── Utilities.cs └── XRefUtils.cs ├── Main.cs ├── ModSettings.cs ├── Patches.cs ├── UI ├── FriendButton.cs ├── HudIcon.cs ├── InviteButton.cs ├── LoadingScreen.cs ├── WorldButton.cs └── WorldDownloadStatus.cs ├── WorldPredownload.csproj └── gompowpd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/.gitmodules -------------------------------------------------------------------------------- /ActionMenuUtils/ActionMenuAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ActionMenuUtils/ActionMenuAPI.cs -------------------------------------------------------------------------------- /ActionMenuUtils/ActionMenuUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ActionMenuUtils/ActionMenuUtils.csproj -------------------------------------------------------------------------------- /ActionMenuUtils/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ActionMenuUtils/Main.cs -------------------------------------------------------------------------------- /ActionMenuUtils/ModSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ActionMenuUtils/ModSettings.cs -------------------------------------------------------------------------------- /ActionMenuUtils/icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ActionMenuUtils/icons -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Common/_dummy2_.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/Common/_dummy2_.dll -------------------------------------------------------------------------------- /Common/_dummy_.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/Common/_dummy_.dll -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /ILRepack/ILRepack.Lib.MSBuild.Task.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ILRepack/ILRepack.Lib.MSBuild.Task.dll -------------------------------------------------------------------------------- /ILRepack/ILRepack.Lib.MSBuild.Task.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ILRepack/ILRepack.Lib.MSBuild.Task.targets -------------------------------------------------------------------------------- /ILRepack/ILRepack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/ILRepack/ILRepack.dll -------------------------------------------------------------------------------- /IntegrityCheckGenerator/IntegrityCheckGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckGenerator/IntegrityCheckGenerator.cs -------------------------------------------------------------------------------- /IntegrityCheckGenerator/IntegrityCheckGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckGenerator/IntegrityCheckGenerator.csproj -------------------------------------------------------------------------------- /IntegrityCheckWeaver/DummyThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckWeaver/DummyThree.cs -------------------------------------------------------------------------------- /IntegrityCheckWeaver/IntegrityCheckWeaver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckWeaver/IntegrityCheckWeaver.csproj -------------------------------------------------------------------------------- /IntegrityCheckWeaver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckWeaver/Program.cs -------------------------------------------------------------------------------- /IntegrityCheckWeaver/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/IntegrityCheckWeaver/Utils.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/LICENSE -------------------------------------------------------------------------------- /Libs/.here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/README.md -------------------------------------------------------------------------------- /StandaloneThirdPerson/CameraBehindMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/CameraBehindMode.cs -------------------------------------------------------------------------------- /StandaloneThirdPerson/CameraMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/CameraMode.cs -------------------------------------------------------------------------------- /StandaloneThirdPerson/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/Main.cs -------------------------------------------------------------------------------- /StandaloneThirdPerson/ModSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/ModSettings.cs -------------------------------------------------------------------------------- /StandaloneThirdPerson/QMEnableDisableListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/QMEnableDisableListener.cs -------------------------------------------------------------------------------- /StandaloneThirdPerson/StandaloneThirdPerson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/StandaloneThirdPerson.csproj -------------------------------------------------------------------------------- /StandaloneThirdPerson/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/StandaloneThirdPerson/Utils.cs -------------------------------------------------------------------------------- /UpdateChecker/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/UpdateChecker/Main.cs -------------------------------------------------------------------------------- /UpdateChecker/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/UpdateChecker/Mod.cs -------------------------------------------------------------------------------- /UpdateChecker/ModVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/UpdateChecker/ModVersion.cs -------------------------------------------------------------------------------- /UpdateChecker/UpdateChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/UpdateChecker/UpdateChecker.csproj -------------------------------------------------------------------------------- /VRChatMods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/VRChatMods.sln -------------------------------------------------------------------------------- /WorldPredownload/Cache/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Cache/CacheManager.cs -------------------------------------------------------------------------------- /WorldPredownload/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Constants.cs -------------------------------------------------------------------------------- /WorldPredownload/DownloadManager/DownloadComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/DownloadManager/DownloadComplete.cs -------------------------------------------------------------------------------- /WorldPredownload/DownloadManager/DownloadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/DownloadManager/DownloadInfo.cs -------------------------------------------------------------------------------- /WorldPredownload/DownloadManager/DownloadProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/DownloadManager/DownloadProgress.cs -------------------------------------------------------------------------------- /WorldPredownload/DownloadManager/DownloadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/DownloadManager/DownloadType.cs -------------------------------------------------------------------------------- /WorldPredownload/DownloadManager/WorldDownloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/DownloadManager/WorldDownloadManager.cs -------------------------------------------------------------------------------- /WorldPredownload/Helpers/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Helpers/Delegates.cs -------------------------------------------------------------------------------- /WorldPredownload/Helpers/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Helpers/ExtensionMethods.cs -------------------------------------------------------------------------------- /WorldPredownload/Helpers/UserAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Helpers/UserAgent.cs -------------------------------------------------------------------------------- /WorldPredownload/Helpers/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Helpers/Utilities.cs -------------------------------------------------------------------------------- /WorldPredownload/Helpers/XRefUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Helpers/XRefUtils.cs -------------------------------------------------------------------------------- /WorldPredownload/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Main.cs -------------------------------------------------------------------------------- /WorldPredownload/ModSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/ModSettings.cs -------------------------------------------------------------------------------- /WorldPredownload/Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/Patches.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/FriendButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/FriendButton.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/HudIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/HudIcon.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/InviteButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/InviteButton.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/LoadingScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/LoadingScreen.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/WorldButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/WorldButton.cs -------------------------------------------------------------------------------- /WorldPredownload/UI/WorldDownloadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/UI/WorldDownloadStatus.cs -------------------------------------------------------------------------------- /WorldPredownload/WorldPredownload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/WorldPredownload.csproj -------------------------------------------------------------------------------- /WorldPredownload/gompowpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gompocp/VRChatMods/HEAD/WorldPredownload/gompowpd --------------------------------------------------------------------------------