├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Build.yml │ └── PR_Build.yml ├── .gitignore ├── LICENSE ├── MultiplayerAvatars.sln ├── MultiplayerAvatars ├── Avatars │ ├── CustomAvatarController.cs │ └── MultiplayerAvatarInput.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Installers │ ├── MpavAppInstaller.cs │ ├── MpavGameInstaller.cs │ └── MpavLobbyInstaller.cs ├── MultiplayerAvatars.csproj ├── Networking │ ├── CustomAvatarManager.cs │ └── CustomAvatarPacket.cs ├── Patches │ └── ScaleAnimatorPatch.cs ├── Plugin.cs ├── Providers │ ├── Abstractions │ │ └── IAvatarProvider.cs │ ├── Attributes │ │ └── AvatarProviderPriorityAttribute.cs │ ├── AvatarProviderService.cs │ ├── CustomAvatarsProvider.cs │ ├── ModelSaber │ │ └── ModelInfo.cs │ └── ModelSaberProvider.cs └── manifest.json └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: goobwabber 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.github/workflows/PR_Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/.github/workflows/PR_Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiplayerAvatars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars.sln -------------------------------------------------------------------------------- /MultiplayerAvatars/Avatars/CustomAvatarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Avatars/CustomAvatarController.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Avatars/MultiplayerAvatarInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Avatars/MultiplayerAvatarInput.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Directory.Build.props -------------------------------------------------------------------------------- /MultiplayerAvatars/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Directory.Build.targets -------------------------------------------------------------------------------- /MultiplayerAvatars/Installers/MpavAppInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Installers/MpavAppInstaller.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Installers/MpavGameInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Installers/MpavGameInstaller.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Installers/MpavLobbyInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Installers/MpavLobbyInstaller.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/MultiplayerAvatars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/MultiplayerAvatars.csproj -------------------------------------------------------------------------------- /MultiplayerAvatars/Networking/CustomAvatarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Networking/CustomAvatarManager.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Networking/CustomAvatarPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Networking/CustomAvatarPacket.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Patches/ScaleAnimatorPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Patches/ScaleAnimatorPatch.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Plugin.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/Abstractions/IAvatarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/Abstractions/IAvatarProvider.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/Attributes/AvatarProviderPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/Attributes/AvatarProviderPriorityAttribute.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/AvatarProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/AvatarProviderService.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/CustomAvatarsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/CustomAvatarsProvider.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/ModelSaber/ModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/ModelSaber/ModelInfo.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/Providers/ModelSaberProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/Providers/ModelSaberProvider.cs -------------------------------------------------------------------------------- /MultiplayerAvatars/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/MultiplayerAvatars/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goobwabber/MultiplayerAvatars/HEAD/README.md --------------------------------------------------------------------------------