├── .gitignore ├── .vsconfig ├── .yamato ├── sonar.yml └── yamato-config.yml ├── Assets ├── Art.meta ├── Art │ ├── Material.meta │ └── Material │ │ ├── environment.mat │ │ ├── environment.mat.meta │ │ ├── furniture.mat │ │ ├── furniture.mat.meta │ │ ├── planet.mat │ │ ├── planet.mat.meta │ │ ├── player_mat.mat │ │ └── player_mat.mat.meta ├── Input.meta ├── Input │ ├── InputSystem.inputsettings.asset │ └── InputSystem.inputsettings.asset.meta ├── Prefabs.meta ├── Prefabs │ ├── Entities.meta │ ├── Entities │ │ ├── MatchmakingPlayer.prefab │ │ ├── MatchmakingPlayer.prefab.meta │ │ ├── MatchmakingPlayerVisuals.prefab │ │ ├── MatchmakingPlayerVisuals.prefab.meta │ │ ├── Table.prefab │ │ └── Table.prefab.meta │ ├── Managers.meta │ ├── Managers │ │ ├── BootStrapper.prefab │ │ ├── BootStrapper.prefab.meta │ │ ├── ClientManager.prefab │ │ ├── ClientManager.prefab.meta │ │ ├── ServerManager.prefab │ │ └── ServerManager.prefab.meta │ ├── Netcode.meta │ ├── Netcode │ │ ├── NetworkedSeatManager.prefab │ │ └── NetworkedSeatManager.prefab.meta │ ├── UI.meta │ └── UI │ │ ├── GameHudUI.prefab │ │ ├── GameHudUI.prefab.meta │ │ ├── MainMenuUI.prefab │ │ ├── MainMenuUI.prefab.meta │ │ ├── PlayerMenuUI.prefab │ │ ├── PlayerMenuUI.prefab.meta │ │ ├── PlayerNameUI.prefab │ │ └── PlayerNameUI.prefab.meta ├── Renderer.meta ├── Renderer │ ├── UniversalRenderPipelineAsset.asset │ ├── UniversalRenderPipelineAsset.asset.meta │ ├── UniversalRenderPipelineAsset_Renderer.asset │ ├── UniversalRenderPipelineAsset_Renderer.asset.meta │ ├── UniversalRenderPipelineGlobalSettings.asset │ └── UniversalRenderPipelineGlobalSettings.asset.meta ├── Resources.meta ├── Resources │ ├── NetworkManager.prefab │ ├── NetworkManager.prefab.meta │ ├── SynchedServerData.prefab │ └── SynchedServerData.prefab.meta ├── Scenes.meta ├── Scenes │ ├── bootStrap.unity │ ├── bootStrap.unity.meta │ ├── game_lab.unity │ ├── game_lab.unity.meta │ ├── game_space.unity │ ├── game_space.unity.meta │ ├── mainMenu.unity │ └── mainMenu.unity.meta ├── Scripts.meta ├── Scripts │ ├── Editor.meta │ ├── Editor │ │ ├── BuildTools.cs │ │ └── BuildTools.cs.meta │ ├── Matchplay.meta │ ├── Matchplay │ │ ├── ApplicationController.cs │ │ ├── ApplicationController.cs.meta │ │ ├── Client.meta │ │ ├── Client │ │ │ ├── ClientGameManager.cs │ │ │ ├── ClientGameManager.cs.meta │ │ │ ├── ClientPrefs.cs │ │ │ ├── ClientPrefs.cs.meta │ │ │ ├── ClientSingleton.cs │ │ │ ├── ClientSingleton.cs.meta │ │ │ ├── Netcode.meta │ │ │ ├── Netcode │ │ │ │ ├── MatchplayNetworkClient.cs │ │ │ │ └── MatchplayNetworkClient.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ │ ├── AuthenticationWrapper.cs │ │ │ │ ├── AuthenticationWrapper.cs.meta │ │ │ │ ├── MatchplayMatchmaker.cs │ │ │ │ └── MatchplayMatchmaker.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── GameHUDUI.cs │ │ │ │ ├── GameHUDUI.cs.meta │ │ │ │ ├── MainMenuUI.cs │ │ │ │ ├── MainMenuUI.cs.meta │ │ │ │ ├── PlayerNameUI.cs │ │ │ │ └── PlayerNameUI.cs.meta │ │ ├── Matchplay.asmdef │ │ ├── Matchplay.asmdef.meta │ │ ├── Server.meta │ │ ├── Server │ │ │ ├── Netcode.meta │ │ │ ├── Netcode │ │ │ │ ├── MatchplayNetworkServer.cs │ │ │ │ ├── MatchplayNetworkServer.cs.meta │ │ │ │ ├── Matchplayer.cs │ │ │ │ ├── Matchplayer.cs.meta │ │ │ │ ├── SeatManager.cs │ │ │ │ └── SeatManager.cs.meta │ │ │ ├── ServerGameManager.cs │ │ │ ├── ServerGameManager.cs.meta │ │ │ ├── ServerSingleton.cs │ │ │ ├── ServerSingleton.cs.meta │ │ │ ├── Services.meta │ │ │ └── Services │ │ │ │ ├── MatchplayBackfiller.cs │ │ │ │ ├── MatchplayBackfiller.cs.meta │ │ │ │ ├── MultiplayAllocationService.cs │ │ │ │ ├── MultiplayAllocationService.cs.meta │ │ │ │ ├── MultiplayServerQueryService.cs │ │ │ │ └── MultiplayServerQueryService.cs.meta │ │ ├── Shared.meta │ │ └── Shared │ │ │ ├── ApplicationData.cs │ │ │ ├── ApplicationData.cs.meta │ │ │ ├── EditorApplicationController.cs │ │ │ ├── EditorApplicationController.cs.meta │ │ │ ├── Game.meta │ │ │ ├── Game │ │ │ ├── GameData.cs │ │ │ └── GameData.cs.meta │ │ │ ├── Netcode.meta │ │ │ ├── Netcode │ │ │ ├── DisconnectReason.cs │ │ │ ├── DisconnectReason.cs.meta │ │ │ ├── MatchplayNetworkMessenger.cs │ │ │ ├── MatchplayNetworkMessenger.cs.meta │ │ │ ├── NetworkGuid.cs │ │ │ ├── NetworkGuid.cs.meta │ │ │ ├── NetworkModels.cs │ │ │ ├── NetworkModels.cs.meta │ │ │ ├── SynchedServerData.cs │ │ │ └── SynchedServerData.cs.meta │ │ │ ├── Tools.meta │ │ │ └── Tools │ │ │ ├── ColorTools.cs │ │ │ ├── ColorTools.cs.meta │ │ │ ├── FlagOperations.cs │ │ │ ├── FlagOperations.cs.meta │ │ │ ├── LocalProfileTool.cs │ │ │ ├── LocalProfileTool.cs.meta │ │ │ ├── NameGenerator.cs │ │ │ ├── NameGenerator.cs.meta │ │ │ ├── RendererColorer.cs │ │ │ └── RendererColorer.cs.meta │ ├── Tests.meta │ └── Tests │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── MatchmakerTests.cs │ │ └── MatchmakerTests.cs.meta │ │ ├── MatchplayTests.asmdef │ │ ├── MatchplayTests.asmdef.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── ClientTests.cs │ │ ├── ClientTests.cs.meta │ │ ├── ServerTests.cs │ │ └── ServerTests.cs.meta │ │ ├── TestTools.cs │ │ └── TestTools.cs.meta ├── UI.meta └── UI │ ├── SamplePanelSettings.asset │ ├── SamplePanelSettings.asset.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ └── Sprites.meta │ ├── UI Toolkit.meta │ ├── UI Toolkit │ ├── UnityThemes.meta │ └── UnityThemes │ │ ├── UnityDefaultRuntimeTheme.tss │ │ └── UnityDefaultRuntimeTheme.tss.meta │ ├── inGame.uxml │ ├── inGame.uxml.meta │ ├── mainMenu.uxml │ ├── mainMenu.uxml.meta │ ├── sampleStyleSheet.uss │ └── sampleStyleSheet.uss.meta ├── CODEOWNERS ├── LICENSE.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneLinux64.json ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md └── ~Documentation └── Images ├── 1_PlayButton.PNG ├── Build_1.png ├── Build_2.PNG ├── Matchmaker_1.PNG ├── Matchmaker_1b.PNG ├── Matchmaker_2.PNG ├── Matchmaker_3.PNG ├── Matchmaker_4.PNG ├── Multiplay_1.PNG ├── Multiplay_2.PNG └── Multiplay_3.PNG /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/.vsconfig -------------------------------------------------------------------------------- /.yamato/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/.yamato/sonar.yml -------------------------------------------------------------------------------- /.yamato/yamato-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/.yamato/yamato-config.yml -------------------------------------------------------------------------------- /Assets/Art.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art.meta -------------------------------------------------------------------------------- /Assets/Art/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material.meta -------------------------------------------------------------------------------- /Assets/Art/Material/environment.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/environment.mat -------------------------------------------------------------------------------- /Assets/Art/Material/environment.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/environment.mat.meta -------------------------------------------------------------------------------- /Assets/Art/Material/furniture.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/furniture.mat -------------------------------------------------------------------------------- /Assets/Art/Material/furniture.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/furniture.mat.meta -------------------------------------------------------------------------------- /Assets/Art/Material/planet.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/planet.mat -------------------------------------------------------------------------------- /Assets/Art/Material/planet.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/planet.mat.meta -------------------------------------------------------------------------------- /Assets/Art/Material/player_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/player_mat.mat -------------------------------------------------------------------------------- /Assets/Art/Material/player_mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Art/Material/player_mat.mat.meta -------------------------------------------------------------------------------- /Assets/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Input.meta -------------------------------------------------------------------------------- /Assets/Input/InputSystem.inputsettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Input/InputSystem.inputsettings.asset -------------------------------------------------------------------------------- /Assets/Input/InputSystem.inputsettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Input/InputSystem.inputsettings.asset.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/MatchmakingPlayer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/MatchmakingPlayer.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/MatchmakingPlayer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/MatchmakingPlayer.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/MatchmakingPlayerVisuals.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/MatchmakingPlayerVisuals.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/MatchmakingPlayerVisuals.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/MatchmakingPlayerVisuals.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/Table.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/Table.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entities/Table.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Entities/Table.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/BootStrapper.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/BootStrapper.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/BootStrapper.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/BootStrapper.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/ClientManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/ClientManager.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/ClientManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/ClientManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/ServerManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/ServerManager.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Managers/ServerManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Managers/ServerManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Netcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Netcode.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Netcode/NetworkedSeatManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Netcode/NetworkedSeatManager.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Netcode/NetworkedSeatManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/Netcode/NetworkedSeatManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI/GameHudUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/GameHudUI.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UI/GameHudUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/GameHudUI.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI/MainMenuUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/MainMenuUI.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UI/MainMenuUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/MainMenuUI.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI/PlayerMenuUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/PlayerMenuUI.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UI/PlayerMenuUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/PlayerMenuUI.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI/PlayerNameUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/PlayerNameUI.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UI/PlayerNameUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Prefabs/UI/PlayerNameUI.prefab.meta -------------------------------------------------------------------------------- /Assets/Renderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer.meta -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineAsset_Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineAsset_Renderer.asset -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineAsset_Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineAsset_Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/Renderer/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Renderer/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/NetworkManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Resources/NetworkManager.prefab -------------------------------------------------------------------------------- /Assets/Resources/NetworkManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Resources/NetworkManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/SynchedServerData.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Resources/SynchedServerData.prefab -------------------------------------------------------------------------------- /Assets/Resources/SynchedServerData.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Resources/SynchedServerData.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/bootStrap.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/bootStrap.unity -------------------------------------------------------------------------------- /Assets/Scenes/bootStrap.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/bootStrap.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/game_lab.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/game_lab.unity -------------------------------------------------------------------------------- /Assets/Scenes/game_lab.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/game_lab.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/game_space.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/game_space.unity -------------------------------------------------------------------------------- /Assets/Scenes/game_space.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/game_space.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/mainMenu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/mainMenu.unity -------------------------------------------------------------------------------- /Assets/Scenes/mainMenu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scenes/mainMenu.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Editor/BuildTools.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Editor/BuildTools.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/ApplicationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/ApplicationController.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/ApplicationController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/ApplicationController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientGameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientGameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientGameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientGameManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientPrefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientPrefs.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientPrefs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientPrefs.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientSingleton.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/ClientSingleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/ClientSingleton.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Netcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Netcode.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Netcode/MatchplayNetworkClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Netcode/MatchplayNetworkClient.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Netcode/MatchplayNetworkClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Netcode/MatchplayNetworkClient.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Services.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Services/AuthenticationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Services/AuthenticationWrapper.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Services/AuthenticationWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Services/AuthenticationWrapper.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Services/MatchplayMatchmaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Services/MatchplayMatchmaker.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/Services/MatchplayMatchmaker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/Services/MatchplayMatchmaker.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/GameHUDUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/GameHUDUI.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/GameHUDUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/GameHUDUI.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/MainMenuUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/MainMenuUI.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/MainMenuUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/MainMenuUI.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/PlayerNameUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/PlayerNameUI.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Client/UI/PlayerNameUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Client/UI/PlayerNameUI.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Matchplay.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Matchplay.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Matchplay.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Matchplay.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/MatchplayNetworkServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/MatchplayNetworkServer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/MatchplayNetworkServer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/MatchplayNetworkServer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/Matchplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/Matchplayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/Matchplayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/Matchplayer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/SeatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/SeatManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Netcode/SeatManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Netcode/SeatManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/ServerGameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/ServerGameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/ServerGameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/ServerGameManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/ServerSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/ServerSingleton.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/ServerSingleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/ServerSingleton.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MatchplayBackfiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MatchplayBackfiller.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MatchplayBackfiller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MatchplayBackfiller.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MultiplayAllocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MultiplayAllocationService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MultiplayAllocationService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MultiplayAllocationService.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MultiplayServerQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MultiplayServerQueryService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Server/Services/MultiplayServerQueryService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Server/Services/MultiplayServerQueryService.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/ApplicationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/ApplicationData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/ApplicationData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/ApplicationData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/EditorApplicationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/EditorApplicationController.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/EditorApplicationController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/EditorApplicationController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Game.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Game/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Game/GameData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Game/GameData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Game/GameData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/DisconnectReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/DisconnectReason.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/DisconnectReason.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/DisconnectReason.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/MatchplayNetworkMessenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/MatchplayNetworkMessenger.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/MatchplayNetworkMessenger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/MatchplayNetworkMessenger.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/NetworkGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/NetworkGuid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/NetworkGuid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0718d2aeb8bd40f9a5e8f08f8903a02a 3 | timeCreated: 1631560658 -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/NetworkModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/NetworkModels.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/NetworkModels.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/NetworkModels.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/SynchedServerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/SynchedServerData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Netcode/SynchedServerData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Netcode/SynchedServerData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/ColorTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/ColorTools.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/ColorTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/ColorTools.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/FlagOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/FlagOperations.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/FlagOperations.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/FlagOperations.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/LocalProfileTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/LocalProfileTool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/LocalProfileTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/LocalProfileTool.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/NameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/NameGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/NameGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/NameGenerator.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/RendererColorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/RendererColorer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Matchplay/Shared/Tools/RendererColorer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Matchplay/Shared/Tools/RendererColorer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Editor/MatchmakerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Editor/MatchmakerTests.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Editor/MatchmakerTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Editor/MatchmakerTests.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/MatchplayTests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/MatchplayTests.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Tests/MatchplayTests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/MatchplayTests.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Runtime.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Runtime/ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Runtime/ClientTests.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Runtime/ClientTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Runtime/ClientTests.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Runtime/ServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Runtime/ServerTests.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Runtime/ServerTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/Runtime/ServerTests.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/TestTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/TestTools.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/TestTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/Scripts/Tests/TestTools.cs.meta -------------------------------------------------------------------------------- /Assets/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI.meta -------------------------------------------------------------------------------- /Assets/UI/SamplePanelSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/SamplePanelSettings.asset -------------------------------------------------------------------------------- /Assets/UI/SamplePanelSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/SamplePanelSettings.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/UI/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/UI/UI Toolkit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/UI Toolkit.meta -------------------------------------------------------------------------------- /Assets/UI/UI Toolkit/UnityThemes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/UI Toolkit/UnityThemes.meta -------------------------------------------------------------------------------- /Assets/UI/UI Toolkit/UnityThemes/UnityDefaultRuntimeTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); -------------------------------------------------------------------------------- /Assets/UI/UI Toolkit/UnityThemes/UnityDefaultRuntimeTheme.tss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/UI Toolkit/UnityThemes/UnityDefaultRuntimeTheme.tss.meta -------------------------------------------------------------------------------- /Assets/UI/inGame.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/inGame.uxml -------------------------------------------------------------------------------- /Assets/UI/inGame.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/inGame.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/mainMenu.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/mainMenu.uxml -------------------------------------------------------------------------------- /Assets/UI/mainMenu.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/mainMenu.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/sampleStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/sampleStyleSheet.uss -------------------------------------------------------------------------------- /Assets/UI/sampleStyleSheet.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Assets/UI/sampleStyleSheet.uss.meta -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneLinux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/BurstAotSettings_StandaloneLinux64.json -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/README.md -------------------------------------------------------------------------------- /~Documentation/Images/1_PlayButton.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/1_PlayButton.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Build_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Build_1.png -------------------------------------------------------------------------------- /~Documentation/Images/Build_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Build_2.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Matchmaker_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Matchmaker_1.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Matchmaker_1b.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Matchmaker_1b.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Matchmaker_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Matchmaker_2.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Matchmaker_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Matchmaker_3.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Matchmaker_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Matchmaker_4.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Multiplay_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Multiplay_1.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Multiplay_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Multiplay_2.PNG -------------------------------------------------------------------------------- /~Documentation/Images/Multiplay_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/com.unity.services.samples.matchplay/HEAD/~Documentation/Images/Multiplay_3.PNG --------------------------------------------------------------------------------