├── Assets ├── Plugins │ ├── link.xml.meta │ ├── Newtonsoft.Json.dll │ ├── Microsoft.WindowsAzure.Storage.dll │ ├── System.Reflection.TypeExtensions.dll │ ├── link.xml │ ├── Newtonsoft.Json.dll.meta │ ├── Microsoft.WindowsAzure.Storage.dll.meta │ └── System.Reflection.TypeExtensions.dll.meta ├── Images │ ├── Icon.png │ └── Icon.png.meta ├── WebGLTemplates │ ├── BetterTemplate │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── index.html.meta │ │ └── index.html │ └── BetterTemplate.meta ├── PlayFabSdk │ ├── Shared │ │ ├── Editor │ │ │ ├── PlayFablogo.png │ │ │ ├── PlayFabHelp.cs.meta │ │ │ ├── PlayFabHelp.cs │ │ │ └── PlayFablogo.png.meta │ │ ├── Editor.meta │ │ ├── Internal.meta │ │ ├── Models │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── MakeSharedSettingsObj.cs.meta │ │ │ │ └── MakeSharedSettingsObj.cs │ │ │ ├── SharedModels.cs.meta │ │ │ ├── PlayFabSharedSettings.cs.meta │ │ │ ├── SharedModels.cs │ │ │ └── PlayFabSharedSettings.cs │ │ ├── Public │ │ │ ├── PluginContract.cs │ │ │ ├── IPlayFabPlugin.cs │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── PlayFabSharedSettings.asset.meta │ │ │ │ └── PlayFabSharedSettings.asset │ │ │ ├── IPlayFabPlugin.cs.meta │ │ │ ├── PlayFabEvents.cs.meta │ │ │ ├── PluginContract.cs.meta │ │ │ ├── PluginManager.cs.meta │ │ │ ├── ISerializerPlugin.cs.meta │ │ │ ├── ITransportPlugin.cs.meta │ │ │ ├── PlayFabApiSettings.cs.meta │ │ │ ├── PluginContractKey.cs.meta │ │ │ ├── PlayFabAuthenticationContext.cs.meta │ │ │ ├── PlayFabLogger.cs.meta │ │ │ ├── PlayFabSettings.cs.meta │ │ │ ├── PlayFabDataGatherer.cs.meta │ │ │ ├── ISerializerPlugin.cs │ │ │ ├── PluginContractKey.cs │ │ │ ├── ITransportPlugin.cs │ │ │ └── PlayFabAuthenticationContext.cs │ │ ├── External.meta │ │ ├── External │ │ │ ├── aria.meta │ │ │ └── aria │ │ │ │ ├── Utils.cs.meta │ │ │ │ ├── BondHelper.cs.meta │ │ │ │ ├── Schema3_types.cs.meta │ │ │ │ ├── MiniBondSerializer.cs.meta │ │ │ │ ├── CompactBinaryProtocolWriter.cs.meta │ │ │ │ ├── BondHelper.cs │ │ │ │ └── Utils.cs │ │ ├── Models.meta │ │ ├── Public.meta │ │ ├── Ionic.Zlib.meta │ │ ├── Internal │ │ │ ├── PlayFabHttp.meta │ │ │ ├── Log.cs.meta │ │ │ ├── Util.cs.meta │ │ │ ├── ISerializer.cs.meta │ │ │ ├── PlayFabErrors.cs.meta │ │ │ ├── SimpleJson.cs.meta │ │ │ ├── PlayFabHttp │ │ │ │ ├── PlayFabHTTP.cs.meta │ │ │ │ ├── PlayFabWWW.cs.meta │ │ │ │ ├── IPlayFabHttp.cs.meta │ │ │ │ ├── PlayFabWebRequest.cs.meta │ │ │ │ ├── PlayFabUnityHttp.cs.meta │ │ │ │ └── IPlayFabHttp.cs │ │ │ ├── SingletonMonoBehaviour.cs.meta │ │ │ ├── wsaReflectionExtensions.cs.meta │ │ │ ├── Log.cs │ │ │ ├── SingletonMonoBehaviour.cs │ │ │ └── wsaReflectionExtensions.cs │ │ └── Ionic.Zlib │ │ │ ├── CRC32.cs.meta │ │ │ ├── ZTree.cs.meta │ │ │ ├── Zlib.cs.meta │ │ │ ├── Deflate.cs.meta │ │ │ ├── GZipStream.cs.meta │ │ │ ├── InfTree.cs.meta │ │ │ ├── Inflate.cs.meta │ │ │ ├── ZlibCodec.cs.meta │ │ │ ├── ZlibStream.cs.meta │ │ │ ├── DeflateStream.cs.meta │ │ │ ├── ZlibBaseStream.cs.meta │ │ │ ├── ZlibConstants.cs.meta │ │ │ └── ParallelDeflateOutputStream.cs.meta │ ├── Data.meta │ ├── Events.meta │ ├── Groups.meta │ ├── CloudScript.meta │ ├── Multiplayer.meta │ ├── Profiles.meta │ ├── Authentication.meta │ ├── Localization.meta │ ├── link.xml.meta │ ├── Admin.meta │ ├── Client.meta │ ├── Server.meta │ ├── Shared.meta │ ├── Matchmaker.meta │ ├── Entity.meta │ ├── Data │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabDataAPI.cs.meta │ │ ├── PlayFabDataModels.cs.meta │ │ ├── PlayFabDataInstanceAPI.cs.meta │ │ └── PlayFabEvents.cs │ ├── Admin │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabAdminInstanceAPI.cs.meta │ │ ├── PlayFabAdminAPI.cs.meta │ │ └── PlayFabAdminModels.cs.meta │ ├── Client │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabClientInstanceAPI.cs.meta │ │ ├── PlayFabClientAPI.cs.meta │ │ ├── PlayFabDeviceUtil.cs.meta │ │ └── PlayFabClientModels.cs.meta │ ├── Events │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabEventsAPI.cs.meta │ │ ├── PlayFabEventsModels.cs.meta │ │ ├── PlayFabEventsInstanceAPI.cs.meta │ │ ├── PlayFabEvents.cs │ │ ├── PlayFabEventsAPI.cs │ │ ├── PlayFabEventsInstanceAPI.cs │ │ └── PlayFabEventsModels.cs │ ├── Groups │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabGroupsAPI.cs.meta │ │ ├── PlayFabGroupsModels.cs.meta │ │ └── PlayFabGroupsInstanceAPI.cs.meta │ ├── Profiles │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabProfilesAPI.cs.meta │ │ ├── PlayFabProfilesModels.cs.meta │ │ ├── PlayFabProfilesInstanceAPI.cs.meta │ │ └── PlayFabEvents.cs │ ├── Server │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabServerInstanceAPI.cs.meta │ │ ├── PlayFabServerAPI.cs.meta │ │ └── PlayFabServerModels.cs.meta │ ├── Authentication │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabAuthenticationAPI.cs.meta │ │ ├── PlayFabAuthenticationModels.cs.meta │ │ ├── PlayFabAuthenticationInstanceAPI.cs.meta │ │ ├── PlayFabEvents.cs │ │ ├── PlayFabAuthenticationModels.cs │ │ ├── PlayFabAuthenticationAPI.cs │ │ └── PlayFabAuthenticationInstanceAPI.cs │ ├── CloudScript │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabCloudScriptAPI.cs.meta │ │ ├── PlayFabCloudScriptModels.cs.meta │ │ ├── PlayFabCloudScriptInstanceAPI.cs.meta │ │ ├── PlayFabEvents.cs │ │ ├── PlayFabCloudScriptAPI.cs │ │ └── PlayFabCloudScriptInstanceAPI.cs │ ├── Entity │ │ └── ScreenTimeTracker.cs.meta │ ├── Localization │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabLocalizationAPI.cs.meta │ │ ├── PlayFabLocalizationModels.cs.meta │ │ ├── PlayFabLocalizationInstanceAPI.cs.meta │ │ ├── PlayFabEvents.cs │ │ ├── PlayFabLocalizationModels.cs │ │ ├── PlayFabLocalizationAPI.cs │ │ └── PlayFabLocalizationInstanceAPI.cs │ ├── Matchmaker │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabMatchmakerInstanceAPI.cs.meta │ │ ├── PlayFabMatchmakerAPI.cs.meta │ │ ├── PlayFabMatchmakerModels.cs.meta │ │ └── PlayFabEvents.cs │ ├── Multiplayer │ │ ├── PlayFabEvents.cs.meta │ │ ├── PlayFabMultiplayerAPI.cs.meta │ │ ├── PlayFabMultiplayerModels.cs.meta │ │ └── PlayFabMultiplayerInstanceAPI.cs.meta │ └── link.xml ├── StandaloneFileBrowser │ ├── StandaloneFileBrowserLinux.cs.meta │ ├── Plugins │ │ ├── Ookii.Dialogs.dll │ │ ├── System.Windows.Forms.dll │ │ ├── Linux │ │ │ ├── x86_64 │ │ │ │ ├── libStandaloneFileBrowser.so │ │ │ │ └── libStandaloneFileBrowser.so.meta │ │ │ └── x86_64.meta │ │ ├── StandaloneFileBrowser.bundle │ │ │ ├── Contents │ │ │ │ ├── MacOS │ │ │ │ │ ├── StandaloneFileBrowser │ │ │ │ │ └── StandaloneFileBrowser.meta │ │ │ │ ├── MacOS.meta │ │ │ │ ├── Info.plist.meta │ │ │ │ └── Info.plist │ │ │ └── Contents.meta │ │ ├── Linux.meta │ │ ├── StandaloneFileBrowser.bundle.meta │ │ ├── StandaloneFileBrowser.jslib.meta │ │ ├── Ookii.Dialogs.dll.meta │ │ ├── System.Windows.Forms.dll.meta │ │ └── StandaloneFileBrowser.jslib │ ├── Plugins.meta │ ├── Sample.meta │ ├── Sample │ │ ├── BasicSampleScene.unity.meta │ │ ├── CanvasSampleScene.unity.meta │ │ ├── BasicSample.cs.meta │ │ ├── CanvasSampleOpenFileTextMultiple.cs.meta │ │ ├── CanvasSampleOpenFileImage.cs.meta │ │ ├── CanvasSampleOpenFileText.cs.meta │ │ ├── CanvasSampleSaveFileImage.cs.meta │ │ ├── CanvasSampleSaveFileText.cs.meta │ │ ├── CanvasSampleOpenFileText.cs │ │ ├── CanvasSampleOpenFileImage.cs │ │ ├── CanvasSampleSaveFileText.cs │ │ ├── CanvasSampleOpenFileTextMultiple.cs │ │ └── CanvasSampleSaveFileImage.cs │ ├── IStandaloneFileBrowser.cs.meta │ ├── StandaloneFileBrowser.cs.meta │ ├── StandaloneFileBrowserEditor.cs.meta │ ├── StandaloneFileBrowserMac.cs.meta │ ├── StandaloneFileBrowserWindows.cs.meta │ ├── IStandaloneFileBrowser.cs │ └── StandaloneFileBrowserEditor.cs ├── DockerBackup │ ├── Docker │ │ ├── unity │ │ │ ├── entrypoint.sh │ │ │ ├── Dockerfile.meta │ │ │ ├── entrypoint.sh.meta │ │ │ ├── build.meta │ │ │ └── Dockerfile │ │ ├── image │ │ │ ├── Dockerfile │ │ │ └── Dockerfile.meta │ │ ├── DockerCommands.ps1.meta │ │ ├── image.meta │ │ ├── unity.meta │ │ └── DockerCommands.ps1 │ └── Docker.meta ├── Scenes │ └── Main.unity.meta ├── Images.meta ├── Plugins.meta ├── Scenes.meta ├── Scripts.meta ├── DockerBackup.meta ├── PlayFabSdk.meta ├── StandaloneFileBrowser.meta ├── WebGLTemplates.meta └── Scripts │ ├── SegmentID.cs │ ├── PortID.cs.meta │ ├── AssetID.cs.meta │ ├── ContainerID.cs.meta │ ├── PlayerID.cs.meta │ ├── PolicyID.cs.meta │ ├── RegionID.cs.meta │ ├── SegmentID.cs.meta │ ├── ServerID.cs.meta │ ├── StudioID.cs.meta │ ├── TitleID.cs.meta │ ├── BuildBundleID.cs.meta │ ├── PlayerController.cs.meta │ ├── StudioID.cs │ ├── TitleID.cs │ ├── PlayerID.cs │ ├── ContainerID.cs │ ├── AssetID.cs │ ├── PortID.cs │ ├── RegionID.cs │ ├── ServerID.cs │ ├── PolicyID.cs │ └── BuildBundleID.cs ├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── VFXManager.asset ├── XRSettings.asset ├── TimeManager.asset ├── EditorBuildSettings.asset ├── AudioManager.asset ├── TagManager.asset ├── EditorSettings.asset ├── UnityConnectSettings.asset ├── DynamicsManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset └── GraphicsSettings.asset ├── .collabignore ├── .gitignore ├── Unity.gitignore ├── Packages └── manifest.json └── README.md /Assets/Plugins/link.xml.meta: -------------------------------------------------------------------------------- 1 | guid: bba635da62696eefd4405aa2546cd5c5 2 | fileFormatVersion: 2 3 | -------------------------------------------------------------------------------- /Assets/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/Images/Icon.png -------------------------------------------------------------------------------- /Assets/Plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/Plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.2.14f1 2 | m_EditorVersionWithRevision: 2019.2.14f1 (49dd4e9fa428) 3 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterTemplate/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/WebGLTemplates/BetterTemplate/logo.png -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Editor/PlayFablogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/PlayFabSdk/Shared/Editor/PlayFablogo.png -------------------------------------------------------------------------------- /Assets/Plugins/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/Plugins/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Assets/Plugins/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/Plugins/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/StandaloneFileBrowserLinux.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d3a668018554b8a89c3fe12de72b60c 3 | timeCreated: 1538067919 -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d731e8907f844532878b81596fe3852 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/Ookii.Dialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/StandaloneFileBrowser/Plugins/Ookii.Dialogs.dll -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91910e31dc88043ea918915ee9d665d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | chmod +x /root/build/GameServer.x86_64 3 | /root/build/GameServer.x86_64 -logFile /data/GameLogs/Server.log -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2363a46f0cf15a4d9a69857885e0d4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/System.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/StandaloneFileBrowser/Plugins/System.Windows.Forms.dll -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/image/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:latest 2 | 3 | RUN apt-get -y update 4 | RUN apt-get -y install curl wget 5 | 6 | ENTRYPOINT ["/bin/bash", "-c"] 7 | 8 | CMD ["ls"] -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PluginContract.cs: -------------------------------------------------------------------------------- 1 | namespace PlayFab 2 | { 3 | public enum PluginContract 4 | { 5 | PlayFab_Serializer, 6 | PlayFab_Transport 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/Linux/x86_64/libStandaloneFileBrowser.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/StandaloneFileBrowser/Plugins/Linux/x86_64/libStandaloneFileBrowser.so -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_RenderPipeSettingsPath: 8 | -------------------------------------------------------------------------------- /Assets/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d57161880df5d934d85a64705206f4bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7243e8746529c1b40b992446c5d9ee9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4116d15b02f3db44eb9c86f860a2eb9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cc15dfe8e358fb4699f2ccd1912951a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b88aad3fc8bf54ca1d9d656e488d42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de94d12ee4a7c5c49870631f30c4c478 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/DockerCommands.ps1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5424e5819dbf7e14b994dcf7c04c338d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/image/Dockerfile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c46813942b2dd574bbbcae345176a8e3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity/Dockerfile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6219d20ae99b124198675e6636d9319 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f754faf8b4b186c438c8419bed778294 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a2eea4489bd9447a29c5114a2c0d7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Groups.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362835eaf7c8a5e47baa567500fe68b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0de2753a3aacc745a814cb2c0d641cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity/entrypoint.sh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60f448d239c796d4e9901466cea9f049 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02094465bfb2b7541a0a06763843a2ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Multiplayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e40ecd498354adc4d835280bde786361 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb038585995bfe148853edfdae25b48c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/IPlayFabPlugin.cs: -------------------------------------------------------------------------------- 1 | namespace PlayFab 2 | { 3 | /// 4 | /// Base interface of any PlayFab SDK plugin. 5 | /// 6 | public interface IPlayFabPlugin 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e25b4a578dba94c9353f4633b20549 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/image.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7816926e3012344b50a1e2f190c61a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f16f13913cb564ba2aaccecd774c7a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14f4be27db90b5d408494e5a681a55f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36cb4effc7537d94294cbcd603c399af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31ae9b0b2cb29dd489c0ec3a86dfa91e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2c3070dc174cc45a4aaf1a5e38263d 3 | timeCreated: 1468524880 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity/build.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf72ae2be46ed64d951d57cf88ad05c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e62f15f2dcfa7de49b4c4db6710c457b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddc4e7b83981f244ba9a26b88c18cb67 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435c74f62ab57b448adeeb37cbc0f96b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterTemplate/logo.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d315c2e7033ee40bc86d677b2255a3f0 3 | timeCreated: 1510677364 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Editor/PlayFabHelp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e51e733dabbc847fa839b19c01bc577c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/MacOS/StandaloneFileBrowser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphillips09/PFAdmin/HEAD/Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/MacOS/StandaloneFileBrowser -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterTemplate/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21a732ac9afba41ce9d0f72567db331f 3 | timeCreated: 1510670098 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Admin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f80b73ed5fc053a409c5e9347d9c609a 3 | folderAsset: yes 4 | timeCreated: 1468524875 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea91f77d2459767449ffe7e92185faa3 3 | folderAsset: yes 4 | timeCreated: 1468524875 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Server.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be1738c19ed8d48468d5163ea56f2b1e 3 | folderAsset: yes 4 | timeCreated: 1468524875 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f23e4a650becd44fa8fccf00ba8529b 3 | folderAsset: yes 4 | timeCreated: 1468524875 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 281f88952a06d48bd87c868061343c5b 3 | folderAsset: yes 4 | timeCreated: 1510669950 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a412908d5a194e469d8ca0be97748d7 3 | folderAsset: yes 4 | timeCreated: 1468524875 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34c5d2725a89d1c40af9b10a9b9dcbc5 3 | folderAsset: yes 4 | timeCreated: 1467491757 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85636a5aec9f04e91a75e422c19ff5da 3 | folderAsset: yes 4 | timeCreated: 1462682372 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/SegmentID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class SegmentID : MonoBehaviour { 7 | public string segmentID; 8 | public Text nameText; 9 | } 10 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/BasicSampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d97280fe82b874466870f709c3315d41 3 | timeCreated: 1483902786 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0e4eec5741834194a946535d535405c 3 | timeCreated: 1483902786 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf69cdb213bea65428a0983a56b85ba3 3 | folderAsset: yes 4 | timeCreated: 1462682372 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/Editor/MakeSharedSettingsObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46c39e1010e247d4bb53f57288dfecc8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c770a70afd8f88f40bb0f25e3b0dbb55 3 | folderAsset: yes 4 | timeCreated: 1468086149 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996ea0b0fb9804844ba9595686ee3e7a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f25bb8e07ed2f4b20aa116e1c94cea0a 3 | folderAsset: yes 4 | timeCreated: 1510669965 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6de758a294727f04c82bf319fdd54c60 3 | folderAsset: yes 4 | timeCreated: 1462746198 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Entity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760e5091fc644574b9160901cc83b72b 3 | folderAsset: yes 4 | timeCreated: 1521234904 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5a66f5db020f344c9327188aec2c060 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/Resources/PlayFabSharedSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698b2db098268c640929a7b8090a31eb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce685769797f44046afa3e567860c94c 3 | timeCreated: 1505756861 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DockerBackup/Docker/unity/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:latest 2 | 3 | COPY build/ /root/build/ 4 | COPY entrypoint.sh /entrypoint.sh 5 | 6 | RUN apt-get -y update 7 | RUN apt-get -y install curl wget 8 | 9 | WORKDIR /root/ 10 | ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/Linux.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82666e520ab4d4cf08bebbb8059cd6f4 3 | folderAsset: yes 4 | timeCreated: 1538224809 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/MacOS/StandaloneFileBrowser.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf122e0e89124ce78aacfeecb3ec554 3 | timeCreated: 1508179371 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/Linux/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd198408642944765b9305bd99404136 3 | folderAsset: yes 4 | timeCreated: 1538230728 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/PortID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5686355308cd25c4ca831374f1ba0a4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/AssetID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa016d736db0370438c8d7cfae2be6db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ContainerID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4c6d891168201c4aa851cd091f22fb7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/PlayerID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d6fc2437b61964429d15b3e35d41c0b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/PolicyID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47efdf07f45a7ff44b5cd51f58f8316c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/RegionID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 376f83d5df0ff6d46a598b81369ba996 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/SegmentID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d8174086d7b02945a59d24a98f6b8c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ServerID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b936eefb519b9574c94b1d4de1878c0d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/StudioID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3a7439c74f7af44299ae074410c50ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/TitleID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8e4c0d2352841409bd4f6707d9e0c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/BuildBundleID.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0808734ce44415d42ab191303ec113a0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/PlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d32c902ca8522f047b4ff479fe586f35 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: deeaf7c863e34d24591edc6c7cf96650 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Admin/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17d913d4a2b01d044a0f70f2679f2fca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da33df462ae2fa04cb401398dc2b8a5d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data/PlayFabDataAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cb3cb06f2399ca44ad3395fed658494 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data/PlayFabDataModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ab3048b1bd63d747b28b2fe0b181743 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 816bf581b4b09c04bbf42adfea99a423 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEventsAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6209aee5722aa2c46ba625e1944d6fa8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Groups/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89aad6173ff54ed4092f14bd118f0652 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Groups/PlayFabGroupsAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42170e999ab34f549ac03af203959176 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 108a292bd382f6c4a88576ed2173cb93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Server/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5076be1f923f141a2a5ea2a53a1385 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/Main.unity 10 | guid: 2cda990e2423bbf4892e6590ba056729 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3701fef92515c438633c5d41bf87c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea444771567a8e747be86eb07cdef93a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data/PlayFabDataInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c754c6db47f4d943954121319b071d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Entity/ScreenTimeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb87bdc3f40216e419c8f1b76c4517d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEventsModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ee524faa41ee444ca207259e58e70a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Groups/PlayFabGroupsModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d73f86b427d81044bb2417ea3b5b03ac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c3bd18b65a5d8d4eb83e5ef98114e4d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1055058934189914bac79666a289e9fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Multiplayer/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe16c398171536247a7e4685790d4dac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles/PlayFabProfilesAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04039b10ae9eebd46a8c4a5b401ea567 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bb861c202c02454e8055d2674620c5c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/IPlayFabPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c515d14de9458ef449d382c41e4943b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 059603d7e53649849b7f08d3b99af79c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PluginContract.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e25ec8533eb4fe4fa7d39cc8dcda24c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PluginManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 408cd48212db9ae46b9100b1d3fef3b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Admin/PlayFabAdminInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 942c3c5d808dfed49b4c4369cc282d49 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client/PlayFabClientInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd185cc4cdc40643a08607da563ddc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript/PlayFabCloudScriptAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9b8ec61c6ab7d2438b7b65a4dd9ef59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEventsInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efc8181560ecd0748a12a6df7137998e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Groups/PlayFabGroupsInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14b336d534f60f4e911c8db52e74a86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Multiplayer/PlayFabMultiplayerAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5dd863da40a92a46b55d58a56b8db93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles/PlayFabProfilesModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7cf1e15acb646e4eaf8ef5d951b1477 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Server/PlayFabServerInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76d4a622fa263d34b9f73488c0095f8b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/BondHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e21bd55f4990402fb0ff7f29f1499e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/ISerializerPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33ec65e8a628fe44a4aa5c55289a16d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/ITransportPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b97cd56b9c312144bb35f37b431aa18f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabApiSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66cd997c6a8b2ed4d8d2b5c2a97b6e22 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PluginContractKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74eb9de26e70e7489002fb92b96af0f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript/PlayFabCloudScriptModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e51e70743e2edab4f88b8de52466db7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabLocalizationAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca10b96ef3ce52644a989907c77d047f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabLocalizationModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 772d6350724839b498944cab1b377fb5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Multiplayer/PlayFabMultiplayerModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9c53dd06e97f414cafc09e35d9f24aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles/PlayFabProfilesInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2cfc8d3e49a7e479e1fe8c2cf18478 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/Schema3_types.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc66b86c0c2054b989ddb7cdf244abe8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication/PlayFabAuthenticationAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf5e0beea20361a45aee9c2329eafd01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication/PlayFabAuthenticationModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec656500f922b0b4db8e13c80770e0d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript/PlayFabCloudScriptInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac313c777a2b7054e9632c96829e1f7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabLocalizationInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e3a59c48c3c6fb45a9d83845b225dde 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker/PlayFabMatchmakerInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77057761a62cdb648960d924f1b322af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Multiplayer/PlayFabMultiplayerInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4dbb109fa8001b4b9fa53260ba50cf8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/MiniBondSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4dc3025b558c49b294e7cf73c20cc04 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/Log.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b55790eeab1b3c41a4f1381cbea1213 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabAuthenticationContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e4df1f8e07aee2409343554f628ce8b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Admin/PlayFabAdminAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98aa7d0b4d53fe24392fc8cc52120845 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Admin/PlayFabAdminModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d7a769446de4b7459591c36c05197ed 3 | timeCreated: 1468524875 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication/PlayFabAuthenticationInstanceAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecff04cca276a454aad3baf64c4a2ab4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client/PlayFabClientAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90390500e82fe784caf147e8a6dee649 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client/PlayFabDeviceUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd4190ddf909a304eb43068a0caea903 3 | timeCreated: 1494526811 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Server/PlayFabServerAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1e12172e1632754fa9cf42f58d7bc9e 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/CompactBinaryProtocolWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d43f7526083df4f489ba53da390841f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/Util.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3bfc0fbdbe1a36429699dfc30c9e488 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/CRC32.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9dc86cc59fba3146927bf0713d12495 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ZTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e87ed58b28c1f8444aac50a060bd86a9 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/Zlib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60b0fc53c1c7d6d41bab583eda94aea8 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Client/PlayFabClientModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a0a4ef9b600e6540b14561880293235 3 | timeCreated: 1468524875 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Server/PlayFabServerModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85069115b99da8c4688d838452001d89 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/ISerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1337f8c156b41834691b131f3b6774f9 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabErrors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed146f2193bb8ef49ad1200eefdab503 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/SimpleJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bce6184794650f24fa8ac244b25edc17 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/Deflate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10c85b67d8e083d4bb3ade7def64d383 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/GZipStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d218a1ed7f6a614cb68a4a0c093dfbe 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/InfTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64e92cd0ce2bbc84e9ce03acff91ba87 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/Inflate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbc8cf5f446a5304d9816ca7c6842d08 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ZlibCodec.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91aee734bfb149145aedc35cebc213c0 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ZlibStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50243a2c2dd97ca4eb70551e2b9da7b2 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/SharedModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e2ad5324972b434883785ddddf9c851 3 | timeCreated: 1467491766 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65702fe1cdebb8e4783afb157a614161 3 | timeCreated: 1465847308 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa223f24327e645d39b48f0ca9615e68 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/BasicSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5148400295519405d82bb0fa65246ea2 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleOpenFileTextMultiple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c09849449d61e47a4599e06b964998 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker/PlayFabMatchmakerAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c712eeedbc85dfa4c80d30f8a2ed6cd9 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker/PlayFabMatchmakerModels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7c60a1006c1e64499804ca82b2412ed 3 | timeCreated: 1468524876 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/DeflateStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7cb4e529d8d0374f96b989aaf5e6c77 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ZlibBaseStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d7f7413bfac9414f9af6ed50db74ef0 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ZlibConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8361ff3584a8a2e488ae21b3c835ce43 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabDataGatherer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9021fc3e0230b9a4db0f0e1b104b764b 3 | timeCreated: 1464569227 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/IStandaloneFileBrowser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7609f7b6787a54496aa41a3053fcc76a 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/StandaloneFileBrowser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c708be74128e4ced9b79eaaf80e8443 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp/PlayFabHTTP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97a8a3caac8b73541aa8a9a1e330f479 3 | timeCreated: 1462575707 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp/PlayFabWWW.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ae810a641b9644187c8824db5ff1fe 3 | timeCreated: 1462745593 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/SingletonMonoBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6a51fa1ed684497db153f40961979c4 3 | timeCreated: 1462682373 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/wsaReflectionExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b20d57e2279b3a408268b20c2be2208 3 | timeCreated: 1468890373 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/PlayFabSharedSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093286084a3d1994a9c28281a1c38b1d 3 | timeCreated: 1467748518 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/StandaloneFileBrowserEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2650af8de2cda46b99b1bc7cf5d30ca5 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/StandaloneFileBrowserMac.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcb49ddb0ed5644fda9c3b055cafa27a 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/StandaloneFileBrowserWindows.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194e247414a78461d83ae606c1b96917 3 | timeCreated: 1483902788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp/IPlayFabHttp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aeac58284b4b1cd4ab93ab0e71ba8540 3 | timeCreated: 1462745280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleOpenFileImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 331c95b7bf39e4792acecff50a972040 3 | timeCreated: 1489946149 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleOpenFileText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99a65d6437df64949b37cba4eadc67a2 3 | timeCreated: 1489946149 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleSaveFileImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e681018aa67241a69b8447678ec3b4e 3 | timeCreated: 1489946149 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleSaveFileText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e97f52f0bd664ee78305dae0094a755 3 | timeCreated: 1489946149 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp/PlayFabWebRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18fd1a0daadd68d45aebf8c19cac2bda 3 | timeCreated: 1466016486 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Ionic.Zlib/ParallelDeflateOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c72138acdb9b6541b0e8695a08c4b5b 3 | timeCreated: 1462682372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/PlayFabHttp/PlayFabUnityHttp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdda21a9c6bb5c74d85422afab113b0f 3 | timeCreated: 1512617003 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.EventsModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnEventsWriteEventsRequestEvent; 9 | public event PlayFabResultEvent OnEventsWriteEventsResultEvent; 10 | } 11 | } 12 | #endif 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.LocalizationModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnLocalizationGetLanguageListRequestEvent; 9 | public event PlayFabResultEvent OnLocalizationGetLanguageListResultEvent; 10 | } 11 | } 12 | #endif 13 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Authentication/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.AuthenticationModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnAuthenticationGetEntityTokenRequestEvent; 9 | public event PlayFabResultEvent OnAuthenticationGetEntityTokenResultEvent; 10 | } 11 | } 12 | #endif 13 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 1024 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/CloudScript/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.CloudScriptModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnCloudScriptExecuteEntityCloudScriptRequestEvent; 9 | public event PlayFabResultEvent OnCloudScriptExecuteEntityCloudScriptResultEvent; 10 | } 11 | } 12 | #endif 13 | -------------------------------------------------------------------------------- /Assets/Scripts/StudioID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class StudioID : MonoBehaviour { 7 | [HideInInspector] public string Id; 8 | [HideInInspector] public string Name; 9 | [HideInInspector] public PFTitle[] Titles; 10 | [SerializeField] private Text studioText; 11 | 12 | public void SetText(string studioName) { 13 | studioText.text = studioName; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Scripts/TitleID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class TitleID : MonoBehaviour { 7 | [HideInInspector] public string Id; 8 | [HideInInspector] public string Name; 9 | [HideInInspector] public string SecretKey; 10 | [HideInInspector] public string GameManagerUrl; 11 | [SerializeField] private Text titleText; 12 | 13 | public void SetText(string titleName) { 14 | titleText.text = titleName; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Scripts/PlayerID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class PlayerID : MonoBehaviour { 7 | public string avatarURL; 8 | public string creationDate; 9 | public string displayName; 10 | public string lastLogin; 11 | public string location; 12 | public string latLong; 13 | public string originPlatform; 14 | public string currencies; 15 | public string bannedUntil; 16 | public string playerID; 17 | public Text nameText; 18 | } 19 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/ISerializerPlugin.cs: -------------------------------------------------------------------------------- 1 | namespace PlayFab 2 | { 3 | /// 4 | /// Interface of any data serializer SDK plugin. 5 | /// 6 | public interface ISerializerPlugin : IPlayFabPlugin 7 | { 8 | T DeserializeObject(string serialized); 9 | T DeserializeObject(string serialized, object serializerStrategy); 10 | object DeserializeObject(string serialized); 11 | 12 | string SerializeObject(object obj); 13 | string SerializeObject(object obj, object serializerStrategy); 14 | } 15 | } -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /.collabignore: -------------------------------------------------------------------------------- 1 | # =========================== 2 | # Default Collab Ignore Rules 3 | # =========================== 4 | 5 | # OS Generated 6 | # ============ 7 | .DS_Store 8 | ._* 9 | .Spotlight-V100 10 | .Trashes 11 | Icon? 12 | ehthumbs.db 13 | [Tt]humbs.db 14 | [Dd]esktop.ini 15 | 16 | # Visual Studio / MonoDevelop generated 17 | # ===================================== 18 | [Ee]xported[Oo]bj/ 19 | *.userprefs 20 | *.csproj 21 | *.pidb 22 | *.suo 23 | *.sln 24 | *.user 25 | *.unityproj 26 | *.booproj 27 | 28 | # Unity generated 29 | # =============== 30 | [Oo]bj/ 31 | [Bb]uild 32 | sysinfo.txt 33 | *.stackdump 34 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabLocalizationModels.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using System; 3 | using System.Collections.Generic; 4 | using PlayFab.SharedModels; 5 | 6 | namespace PlayFab.LocalizationModels 7 | { 8 | [Serializable] 9 | public class GetLanguageListRequest : PlayFabRequestCommon 10 | { 11 | } 12 | 13 | [Serializable] 14 | public class GetLanguageListResponse : PlayFabResultCommon 15 | { 16 | /// 17 | /// The list of allowed languages, in BCP47 two-letter format 18 | /// 19 | public List LanguageList; 20 | } 21 | } 22 | #endif 23 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 1 11 | m_SpritePackerMode: 4 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/Editor/MakeSharedSettingsObj.cs: -------------------------------------------------------------------------------- 1 | #if UNITY_2017_1_OR_NEWER 2 | using PlayFab.PfEditor; 3 | using UnityEditor; 4 | using UnityEngine; 5 | 6 | public class MakeScriptableObject 7 | { 8 | [MenuItem("PlayFab/MakePlayFabSharedSettings")] 9 | public static void MakePlayFabSharedSettings() 10 | { 11 | PlayFabSharedSettings asset = ScriptableObject.CreateInstance(); 12 | 13 | AssetDatabase.CreateAsset(asset, "Assets/PlayFabSdk/Shared/Public/Resources/PlayFabSharedSettings.asset"); // TODO: Path should not be hard coded 14 | AssetDatabase.SaveAssets(); 15 | 16 | EditorUtility.FocusProjectWindow(); 17 | 18 | Selection.activeObject = asset; 19 | } 20 | } 21 | #endif 22 | -------------------------------------------------------------------------------- /Assets/Scripts/ContainerID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class ContainerID : MonoBehaviour { 7 | public string containerName; 8 | public Text text; 9 | public Dropdown tagsList; 10 | 11 | public void EnumerateTags(List tagResults) { 12 | if (tagsList != null) { 13 | tagsList.options.Clear(); 14 | foreach (var tag in tagResults) { 15 | tagsList.options.Add (new Dropdown.OptionData () { text = tag }); 16 | } 17 | tagsList.value = 0; 18 | tagsList.RefreshShownValue(); 19 | } else { 20 | Debug.LogWarning(this.name); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PluginContractKey.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace PlayFab 4 | { 5 | public struct PluginContractKey 6 | { 7 | public PluginContract _pluginContract; 8 | public string _pluginName; 9 | } 10 | 11 | public class PluginContractKeyComparator : EqualityComparer 12 | { 13 | public override bool Equals(PluginContractKey x, PluginContractKey y) 14 | { 15 | return x._pluginContract == y._pluginContract && x._pluginName.Equals(y._pluginName); 16 | } 17 | 18 | public override int GetHashCode(PluginContractKey obj) 19 | { 20 | return (int)obj._pluginContract + obj._pluginName.GetHashCode(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Editor/PlayFabHelp.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | using UnityEngine; 3 | 4 | namespace PlayFab.PfEditor 5 | { 6 | public static class PlayFabHelp 7 | { 8 | [MenuItem("PlayFab/GettingStarted")] 9 | private static void GettingStarted() 10 | { 11 | Application.OpenURL("https://api.playfab.com/docs/beginners-guide"); 12 | } 13 | 14 | [MenuItem("PlayFab/Docs")] 15 | private static void Documentation() 16 | { 17 | Application.OpenURL("https://api.playfab.com/documentation"); 18 | } 19 | 20 | [MenuItem("PlayFab/Dashboard")] 21 | private static void Dashboard() 22 | { 23 | Application.OpenURL("https://developer.playfab.com/"); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Plugins/Newtonsoft.Json.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61b6876a46f632cc2a015e3d850039aa 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | Any: 16 | second: 17 | enabled: 1 18 | settings: {} 19 | - first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | - first: 26 | Windows Store Apps: WindowsStoreApps 27 | second: 28 | enabled: 0 29 | settings: 30 | CPU: AnyCPU 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/Scripts/AssetID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class AssetID : MonoBehaviour { 7 | [HideInInspector] public string fileName; 8 | [HideInInspector] public Dictionary metaData; 9 | [SerializeField] private Text fileNameText; 10 | [SerializeField] private Button thisSelectionButton; 11 | [SerializeField] private GameObject thisDeleteButton; 12 | [HideInInspector] public string mountPath; 13 | 14 | public void SetText(string filename) { 15 | fileNameText.text = filename; 16 | } 17 | 18 | public void SetSelectable(bool selectable) { 19 | thisDeleteButton.SetActive(!selectable); 20 | thisSelectionButton.interactable = selectable; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Assets/Plugins/Microsoft.WindowsAzure.Storage.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf6be54a43e7182a5598eca796a58c70 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | Any: 16 | second: 17 | enabled: 1 18 | settings: {} 19 | - first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | - first: 26 | Windows Store Apps: WindowsStoreApps 27 | second: 28 | enabled: 0 29 | settings: 30 | CPU: AnyCPU 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/Plugins/System.Reflection.TypeExtensions.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12274e6f040f9922bfcce403ec78c0bc 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | Any: 16 | second: 17 | enabled: 1 18 | settings: {} 19 | - first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | - first: 26 | Windows Store Apps: WindowsStoreApps 27 | second: 28 | enabled: 0 29 | settings: 30 | CPU: AnyCPU 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/IStandaloneFileBrowser.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SFB { 4 | public interface IStandaloneFileBrowser { 5 | string[] OpenFilePanel(string title, string directory, ExtensionFilter[] extensions, bool multiselect); 6 | string[] OpenFolderPanel(string title, string directory, bool multiselect); 7 | string SaveFilePanel(string title, string directory, string defaultName, ExtensionFilter[] extensions); 8 | 9 | void OpenFilePanelAsync(string title, string directory, ExtensionFilter[] extensions, bool multiselect, Action cb); 10 | void OpenFolderPanelAsync(string title, string directory, bool multiselect, Action cb); 11 | void SaveFilePanelAsync(string title, string directory, string defaultName, ExtensionFilter[] extensions, Action cb); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Scripts/PortID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | using PlayFab.MultiplayerModels; 6 | 7 | public class PortID : MonoBehaviour { 8 | public string portName; 9 | public int number; 10 | public ProtocolType protocol; 11 | public Port portIDParams; 12 | public Text buttonText; 13 | 14 | public void UpdatePort(string newName, int portNumber, ProtocolType newProtocol) { 15 | portName = newName; 16 | number = portNumber; 17 | protocol = newProtocol; 18 | 19 | if (portIDParams == null) { 20 | portIDParams = new Port(); 21 | } 22 | 23 | portIDParams.Name = newName; 24 | portIDParams.Num = portNumber; 25 | portIDParams.Protocol = newProtocol; 26 | 27 | buttonText.text = $"{newName}\n{newProtocol} - {portNumber}"; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/Resources/PlayFabSharedSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 093286084a3d1994a9c28281a1c38b1d, type: 3} 13 | m_Name: PlayFabSharedSettings 14 | m_EditorClassIdentifier: 15 | TitleId: 16 | DeveloperSecretKey: 17 | ProductionEnvironmentUrl: 18 | RequestType: 1 19 | AdvertisingIdType: 20 | AdvertisingIdValue: 21 | DisableAdvertising: 0 22 | DisableDeviceInfo: 0 23 | DisableFocusTimeCollection: 0 24 | RequestTimeout: 2000 25 | RequestKeepAlive: 1 26 | CompressApiData: 1 27 | LogLevel: 12 28 | LoggerHost: 29 | LoggerPort: 0 30 | EnableRealTimeLogging: 0 31 | LogCapLimit: 30 32 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 110fdfb459db4fc448a2ccd37e200fa4 3 | folderAsset: yes 4 | PluginImporter: 5 | externalObjects: {} 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | - first: 13 | Any: 14 | second: 15 | enabled: 0 16 | settings: {} 17 | - first: 18 | Editor: Editor 19 | second: 20 | enabled: 1 21 | settings: 22 | DefaultValueInitialized: true 23 | - first: 24 | Standalone: OSXIntel 25 | second: 26 | enabled: 1 27 | settings: {} 28 | - first: 29 | Standalone: OSXIntel64 30 | second: 31 | enabled: 1 32 | settings: {} 33 | - first: 34 | Standalone: OSXUniversal 35 | second: 36 | enabled: 1 37 | settings: {} 38 | userData: 39 | assetBundleName: 40 | assetBundleVariant: 41 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/ITransportPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace PlayFab 5 | { 6 | /// 7 | /// Interface of any transport SDK plugin. 8 | /// 9 | public interface ITransportPlugin: IPlayFabPlugin 10 | { 11 | bool IsInitialized { get; } 12 | void Initialize(); 13 | 14 | // Mirroring MonoBehaviour - Relayed from PlayFabHTTP 15 | void Update(); 16 | void OnDestroy(); 17 | 18 | void SimpleGetCall(string fullUrl, Action successCallback, Action errorCallback); 19 | void SimplePutCall(string fullUrl, byte[] payload, Action successCallback, Action errorCallback); 20 | 21 | void SimplePostCall(string fullUrl, byte[] payload, Action successCallback, Action errorCallback); 22 | 23 | void MakeApiCall(object reqContainer); 24 | 25 | int GetPendingMessages(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Assets/Scripts/RegionID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | using PlayFab.MultiplayerModels; 6 | 7 | public class RegionID : MonoBehaviour { 8 | public AzureRegion region; 9 | public int maxServers; 10 | public int standByServers; 11 | public BuildRegionParams regionIDParams; 12 | public Text buttonText; 13 | 14 | public void UpdateRegion(AzureRegion newRegion, int newMax, int newStandby) { 15 | region = newRegion; 16 | maxServers = newMax; 17 | standByServers = newStandby; 18 | 19 | if (regionIDParams == null) { 20 | regionIDParams = new BuildRegionParams(); 21 | } 22 | 23 | regionIDParams.Region = newRegion; 24 | regionIDParams.MaxServers = newMax; 25 | regionIDParams.StandbyServers = newStandby; 26 | 27 | buttonText.text = $"{newRegion}\nMX:{newMax} - SB:{newStandby}"; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 1 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 1 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Matchmaker/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if ENABLE_PLAYFABSERVER_API 2 | using PlayFab.MatchmakerModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnMatchmakerAuthUserRequestEvent; 9 | public event PlayFabResultEvent OnMatchmakerAuthUserResultEvent; 10 | public event PlayFabRequestEvent OnMatchmakerPlayerJoinedRequestEvent; 11 | public event PlayFabResultEvent OnMatchmakerPlayerJoinedResultEvent; 12 | public event PlayFabRequestEvent OnMatchmakerPlayerLeftRequestEvent; 13 | public event PlayFabResultEvent OnMatchmakerPlayerLeftResultEvent; 14 | public event PlayFabRequestEvent OnMatchmakerStartGameRequestEvent; 15 | public event PlayFabResultEvent OnMatchmakerStartGameResultEvent; 16 | public event PlayFabRequestEvent OnMatchmakerUserInfoRequestEvent; 17 | public event PlayFabResultEvent OnMatchmakerUserInfoResultEvent; 18 | } 19 | } 20 | #endif 21 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/BondHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using UnityEngine; 4 | 5 | // This is part of Aria SDK 6 | 7 | namespace Microsoft.Applications.Events 8 | { 9 | /// 10 | /// BondHelper class provides methods to Serialize and get the size of an event 11 | /// 12 | internal static class BondHelper 13 | { 14 | /// 15 | /// Serialize an object and returns an Stream as a result of the bond serialization 16 | /// 17 | /// 18 | /// 19 | public static void Serialize(DataModels.CsEvent objToSerialize, MemoryStream outStream) 20 | { 21 | try 22 | { 23 | CompactBinaryProtocolWriter newWriter = new CompactBinaryProtocolWriter(); 24 | MiniBond.Serialize(newWriter, objToSerialize, false); 25 | outStream.Write(newWriter.Data.ToArray(), 0, newWriter.Data.Count); 26 | } 27 | catch 28 | { 29 | Debug.LogError("Failed to serialize"); 30 | } 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Never ignore Asset meta data 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # TextMesh Pro files 20 | [Aa]ssets/TextMesh*Pro/ 21 | 22 | # Autogenerated Jetbrains Rider plugin 23 | [Aa]ssets/Plugins/Editor/JetBrains* 24 | 25 | # Visual Studio cache directory 26 | .vs/ 27 | 28 | # Gradle cache directory 29 | .gradle/ 30 | 31 | # Autogenerated VS/MD/Consulo solution and project files 32 | ExportedObj/ 33 | .consulo/ 34 | *.csproj 35 | *.unityproj 36 | *.sln 37 | *.suo 38 | *.tmp 39 | *.user 40 | *.userprefs 41 | *.pidb 42 | *.booproj 43 | *.svd 44 | *.pdb 45 | *.mdb 46 | *.opendb 47 | *.VC.db 48 | 49 | # Unity3D generated meta files 50 | *.pidb.meta 51 | *.pdb.meta 52 | *.mdb.meta 53 | 54 | # Unity3D generated file on crash reports 55 | sysinfo.txt 56 | 57 | # Builds 58 | *.apk 59 | *.unitypackage 60 | 61 | # Crashlytics generated file 62 | crashlytics-build.properties 63 | 64 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/SharedModels.cs: -------------------------------------------------------------------------------- 1 | using PlayFab.Internal; 2 | 3 | namespace PlayFab.SharedModels 4 | { 5 | public class HttpResponseObject 6 | { 7 | public int code; 8 | public string status; 9 | public object data; 10 | } 11 | 12 | public class PlayFabBaseModel 13 | { 14 | public string ToJson() 15 | { 16 | var json = PluginManager.GetPlugin(PluginContract.PlayFab_Serializer); 17 | return json.SerializeObject(this); 18 | } 19 | } 20 | 21 | public interface IPlayFabInstanceApi { } 22 | 23 | public class PlayFabRequestCommon : PlayFabBaseModel 24 | { 25 | public PlayFabAuthenticationContext AuthenticationContext; 26 | } 27 | 28 | public class PlayFabResultCommon : PlayFabBaseModel 29 | { 30 | public PlayFabRequestCommon Request; 31 | public object CustomData; 32 | } 33 | 34 | public class PlayFabLoginResultCommon : PlayFabResultCommon 35 | { 36 | public PlayFabAuthenticationContext AuthenticationContext; 37 | } 38 | 39 | public class PlayFabResult where TResult : PlayFabResultCommon 40 | { 41 | public TResult Result; 42 | public object CustomData; 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Unity.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Never ignore Asset meta data 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # TextMesh Pro files 20 | [Aa]ssets/TextMesh*Pro/ 21 | 22 | # Autogenerated Jetbrains Rider plugin 23 | [Aa]ssets/Plugins/Editor/JetBrains* 24 | 25 | # Visual Studio cache directory 26 | .vs/ 27 | 28 | # Gradle cache directory 29 | .gradle/ 30 | 31 | # Autogenerated VS/MD/Consulo solution and project files 32 | ExportedObj/ 33 | .consulo/ 34 | *.csproj 35 | *.unityproj 36 | *.sln 37 | *.suo 38 | *.tmp 39 | *.user 40 | *.userprefs 41 | *.pidb 42 | *.booproj 43 | *.svd 44 | *.pdb 45 | *.mdb 46 | *.opendb 47 | *.VC.db 48 | 49 | # Unity3D generated meta files 50 | *.pidb.meta 51 | *.pdb.meta 52 | *.mdb.meta 53 | 54 | # Unity3D generated file on crash reports 55 | sysinfo.txt 56 | 57 | # Builds 58 | *.apk 59 | *.unitypackage 60 | 61 | # Crashlytics generated file 62 | crashlytics-build.properties 63 | 64 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Models/PlayFabSharedSettings.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using PlayFab; 3 | 4 | #if UNITY_5_3_OR_NEWER 5 | [CreateAssetMenu(fileName = "PlayFabSharedSettings", menuName = "PlayFab/CreateSharedSettings", order = 1)] 6 | #endif 7 | public class PlayFabSharedSettings : ScriptableObject 8 | { 9 | public string TitleId; 10 | internal string VerticalName = null; 11 | #if ENABLE_PLAYFABSERVER_API || ENABLE_PLAYFABADMIN_API || UNITY_EDITOR 12 | public string DeveloperSecretKey; 13 | #endif 14 | public string ProductionEnvironmentUrl = ""; 15 | 16 | #if UNITY_2017_2_OR_NEWER 17 | public WebRequestType RequestType = WebRequestType.UnityWebRequest; 18 | #else 19 | public WebRequestType RequestType = WebRequestType.UnityWww; 20 | #endif 21 | 22 | public string AdvertisingIdType; 23 | public string AdvertisingIdValue; 24 | 25 | public bool DisableAdvertising; 26 | public bool DisableDeviceInfo; 27 | public bool DisableFocusTimeCollection; 28 | 29 | public int RequestTimeout = 2000; 30 | public bool RequestKeepAlive = true; 31 | public bool CompressApiData = true; 32 | 33 | public PlayFabLogLevel LogLevel = PlayFabLogLevel.Warning | PlayFabLogLevel.Error; 34 | public string LoggerHost = ""; 35 | public int LoggerPort = 0; 36 | public bool EnableRealTimeLogging = false; 37 | public int LogCapLimit = 30; 38 | } 39 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Public/PlayFabAuthenticationContext.cs: -------------------------------------------------------------------------------- 1 | namespace PlayFab 2 | { 3 | public sealed class PlayFabAuthenticationContext 4 | { 5 | public string PlayFabId; 6 | 7 | public PlayFabAuthenticationContext() 8 | { 9 | } 10 | 11 | public PlayFabAuthenticationContext(string clientSessionTicket, string entityToken, string playFabId) : this() 12 | { 13 | #if !DISABLE_PLAYFABCLIENT_API 14 | ClientSessionTicket = clientSessionTicket; 15 | #endif 16 | #if !DISABLE_PLAYFABENTITY_API 17 | EntityToken = entityToken; 18 | #endif 19 | PlayFabId = playFabId; 20 | } 21 | 22 | #if !DISABLE_PLAYFABCLIENT_API 23 | public string ClientSessionTicket; 24 | public bool IsClientLoggedIn() 25 | { 26 | return !string.IsNullOrEmpty(ClientSessionTicket); 27 | } 28 | #endif 29 | 30 | #if !DISABLE_PLAYFABENTITY_API 31 | public string EntityToken; 32 | public bool IsEntityLoggedIn() 33 | { 34 | return !string.IsNullOrEmpty(EntityToken); 35 | } 36 | #endif 37 | 38 | public void ForgetAllCredentials() 39 | { 40 | #if !DISABLE_PLAYFABCLIENT_API 41 | ClientSessionTicket = null; 42 | #endif 43 | #if !DISABLE_PLAYFABENTITY_API 44 | EntityToken = null; 45 | #endif 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Assets/Scripts/ServerID.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using PlayFab.MultiplayerModels; 4 | using UnityEngine; 5 | using UnityEngine.UI; 6 | 7 | public class ServerID : MonoBehaviour { 8 | public Button endSessionButton; 9 | [HideInInspector] public AzureRegion Region; 10 | [HideInInspector] public string ServerIdentifier; 11 | [HideInInspector] public string SessionIdentifier; 12 | [HideInInspector] public string State; 13 | [HideInInspector] public List connectedPlayers; 14 | [SerializeField] private Text regionAndStateText; 15 | [SerializeField] private Text serverIDText; 16 | [SerializeField] private Text playerCountText; 17 | 18 | public void SetText(string regionAndState, string serverID, int players) { 19 | regionAndStateText.text = regionAndState; 20 | serverIDText.text = serverID; 21 | playerCountText.text = "Players\n" + players.ToString(); 22 | } 23 | 24 | public void SetBuildText(string nameAngRegionAndStatus, string buildID, CurrentServerStats stats) { 25 | regionAndStateText.text = nameAngRegionAndStatus; 26 | serverIDText.text = buildID; 27 | playerCountText.text = string.Format("{0} Active\n{1} Standby\n{2} Propping\n{3} Total", 28 | stats.Active, stats.StandingBy, stats.Propping, stats.Total); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/External/aria/Utils.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | // This is part of Aria SDK 5 | 6 | namespace Microsoft.Applications.Events 7 | { 8 | class Utils 9 | { 10 | private static readonly long TICKS_AT_1970 = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).Ticks; 11 | 12 | /// 13 | /// Calculates milliseconds since 1970 14 | /// 15 | /// Milliseconds since 1970 16 | public static long MsFrom1970() 17 | { 18 | return (DateTime.UtcNow.Ticks - TICKS_AT_1970) / 10000; 19 | } 20 | 21 | /// 22 | /// Calculates milliseconds since 1970 23 | /// 24 | /// Milliseconds since 1970 25 | public static long TimestampNowTicks() 26 | { 27 | return DateTime.UtcNow.Ticks; 28 | } 29 | 30 | public static string TenantID(string tenant) 31 | { 32 | try 33 | { 34 | var endIndex = tenant.IndexOf("-", StringComparison.Ordinal); 35 | if (endIndex > 0) 36 | return tenant.Substring(0, endIndex); 37 | } 38 | catch 39 | { 40 | Debug.LogError("Failed to convert tenantId"); 41 | } 42 | 43 | return string.Empty; 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Shared/Internal/Log.cs: -------------------------------------------------------------------------------- 1 | namespace PlayFab.Internal 2 | { 3 | public static class Log 4 | { 5 | public static void Debug(string text, params object[] args) 6 | { 7 | if ((PlayFabSettings.LogLevel & PlayFabLogLevel.Debug) != 0) 8 | { 9 | UnityEngine.Debug.Log(PlayFabUtil.timeStamp + " DEBUG: " + PlayFabUtil.Format(text, args)); 10 | } 11 | } 12 | 13 | public static void Info(string text, params object[] args) 14 | { 15 | if ((PlayFabSettings.LogLevel & PlayFabLogLevel.Info) != 0) 16 | { 17 | UnityEngine.Debug.Log(PlayFabUtil.timeStamp + " INFO: " + PlayFabUtil.Format(text, args)); 18 | } 19 | } 20 | 21 | public static void Warning(string text, params object[] args) 22 | { 23 | if ((PlayFabSettings.LogLevel & PlayFabLogLevel.Warning) != 0) 24 | { 25 | UnityEngine.Debug.LogWarning(PlayFabUtil.timeStamp + " WARNING: " + PlayFabUtil.Format(text, args)); 26 | } 27 | } 28 | 29 | public static void Error(string text, params object[] args) 30 | { 31 | if ((PlayFabSettings.LogLevel & PlayFabLogLevel.Error) != 0) 32 | { 33 | UnityEngine.Debug.LogError(PlayFabUtil.timeStamp + " ERROR: " + PlayFabUtil.Format(text, args)); 34 | } 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Profiles/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.ProfilesModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnProfilesGetGlobalPolicyRequestEvent; 9 | public event PlayFabResultEvent OnProfilesGetGlobalPolicyResultEvent; 10 | public event PlayFabRequestEvent OnProfilesGetProfileRequestEvent; 11 | public event PlayFabResultEvent OnProfilesGetProfileResultEvent; 12 | public event PlayFabRequestEvent OnProfilesGetProfilesRequestEvent; 13 | public event PlayFabResultEvent OnProfilesGetProfilesResultEvent; 14 | public event PlayFabRequestEvent OnProfilesSetGlobalPolicyRequestEvent; 15 | public event PlayFabResultEvent OnProfilesSetGlobalPolicyResultEvent; 16 | public event PlayFabRequestEvent OnProfilesSetProfileLanguageRequestEvent; 17 | public event PlayFabResultEvent OnProfilesSetProfileLanguageResultEvent; 18 | public event PlayFabRequestEvent OnProfilesSetProfilePolicyRequestEvent; 19 | public event PlayFabResultEvent OnProfilesSetProfilePolicyResultEvent; 20 | } 21 | } 22 | #endif 23 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | StandaloneFileBrowser 11 | CFBundleIdentifier 12 | com.gkngkc.sfb 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | StandaloneFileBrowser 17 | CFBundlePackageType 18 | BNDL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0 29 | CSResourcesFileMapped 30 | 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 10A255 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 18A384 39 | DTSDKName 40 | macosx10.14 41 | DTXcode 42 | 1000 43 | DTXcodeBuild 44 | 10A255 45 | 46 | 47 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Data/PlayFabEvents.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | using PlayFab.DataModels; 3 | 4 | namespace PlayFab.Events 5 | { 6 | public partial class PlayFabEvents 7 | { 8 | public event PlayFabRequestEvent OnDataAbortFileUploadsRequestEvent; 9 | public event PlayFabResultEvent OnDataAbortFileUploadsResultEvent; 10 | public event PlayFabRequestEvent OnDataDeleteFilesRequestEvent; 11 | public event PlayFabResultEvent OnDataDeleteFilesResultEvent; 12 | public event PlayFabRequestEvent OnDataFinalizeFileUploadsRequestEvent; 13 | public event PlayFabResultEvent OnDataFinalizeFileUploadsResultEvent; 14 | public event PlayFabRequestEvent OnDataGetFilesRequestEvent; 15 | public event PlayFabResultEvent OnDataGetFilesResultEvent; 16 | public event PlayFabRequestEvent OnDataGetObjectsRequestEvent; 17 | public event PlayFabResultEvent OnDataGetObjectsResultEvent; 18 | public event PlayFabRequestEvent OnDataInitiateFileUploadsRequestEvent; 19 | public event PlayFabResultEvent OnDataInitiateFileUploadsResultEvent; 20 | public event PlayFabRequestEvent OnDataSetObjectsRequestEvent; 21 | public event PlayFabResultEvent OnDataSetObjectsResultEvent; 22 | } 23 | } 24 | #endif 25 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Localization/PlayFabLocalizationAPI.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using PlayFab.LocalizationModels; 6 | using PlayFab.Internal; 7 | 8 | namespace PlayFab 9 | { 10 | /// 11 | /// The Localization APIs give you the tools needed to manage language setup in your title. 12 | /// 13 | public static class PlayFabLocalizationAPI 14 | { 15 | static PlayFabLocalizationAPI() {} 16 | 17 | 18 | /// 19 | /// Clear the Client SessionToken which allows this Client to call API calls requiring login. 20 | /// A new/fresh login will be required after calling this. 21 | /// 22 | public static void ForgetAllCredentials() 23 | { 24 | PlayFabSettings.staticPlayer.ForgetAllCredentials(); 25 | } 26 | 27 | /// 28 | /// Retrieves the list of allowed languages, only accessible by title entities 29 | /// 30 | public static void GetLanguageList(GetLanguageListRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) 31 | { 32 | var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; 33 | 34 | 35 | PlayFabHttp.MakeApiCall("/Locale/GetLanguageList", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context); 36 | } 37 | 38 | 39 | } 40 | } 41 | 42 | #endif 43 | -------------------------------------------------------------------------------- /Assets/PlayFabSdk/Events/PlayFabEventsAPI.cs: -------------------------------------------------------------------------------- 1 | #if !DISABLE_PLAYFABENTITY_API 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using PlayFab.EventsModels; 6 | using PlayFab.Internal; 7 | 8 | namespace PlayFab 9 | { 10 | /// 11 | /// Write custom PlayStream events for any PlayFab entity. PlayStream events can be used for analytics, reporting, 12 | /// debugging, or to trigger custom actions in near real-time. 13 | /// 14 | public static class PlayFabEventsAPI 15 | { 16 | static PlayFabEventsAPI() {} 17 | 18 | 19 | /// 20 | /// Clear the Client SessionToken which allows this Client to call API calls requiring login. 21 | /// A new/fresh login will be required after calling this. 22 | /// 23 | public static void ForgetAllCredentials() 24 | { 25 | PlayFabSettings.staticPlayer.ForgetAllCredentials(); 26 | } 27 | 28 | /// 29 | /// Write batches of entity based events to PlayStream. 30 | /// 31 | public static void WriteEvents(WriteEventsRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) 32 | { 33 | var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; 34 | 35 | 36 | PlayFabHttp.MakeApiCall("/Event/WriteEvents", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context); 37 | } 38 | 39 | 40 | } 41 | } 42 | 43 | #endif 44 | -------------------------------------------------------------------------------- /Assets/StandaloneFileBrowser/Sample/CanvasSampleOpenFileText.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.Runtime.InteropServices; 5 | using UnityEngine; 6 | using UnityEngine.UI; 7 | using UnityEngine.EventSystems; 8 | using SFB; 9 | 10 | [RequireComponent(typeof(Button))] 11 | public class CanvasSampleOpenFileText : MonoBehaviour, IPointerDownHandler { 12 | public Text output; 13 | 14 | #if UNITY_WEBGL && !UNITY_EDITOR 15 | // 16 | // WebGL 17 | // 18 | [DllImport("__Internal")] 19 | private static extern void UploadFile(string gameObjectName, string methodName, string filter, bool multiple); 20 | 21 | public void OnPointerDown(PointerEventData eventData) { 22 | UploadFile(gameObject.name, "OnFileUpload", ".txt", false); 23 | } 24 | 25 | // Called from browser 26 | public void OnFileUpload(string url) { 27 | StartCoroutine(OutputRoutine(url)); 28 | } 29 | #else 30 | // 31 | // Standalone platforms & editor 32 | // 33 | public void OnPointerDown(PointerEventData eventData) { } 34 | 35 | void Start() { 36 | var button = GetComponent