├── .gitattributes ├── Lost ├── Dependencies.txt ├── Dependencies.txt.meta ├── Lost.Addressables.meta ├── Lost.Addressables │ ├── Documentation.meta │ ├── Documentation │ │ ├── Azure Setup.md │ │ ├── Azure Setup.md.meta │ │ ├── S3 Setup.md │ │ ├── S3 Setup.md.meta │ │ ├── com.lostsignal.addressables.md │ │ └── com.lostsignal.addressables.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AppConfigs.meta │ │ ├── AppConfigs │ │ │ ├── BuildPlayerContentSettings.cs │ │ │ ├── BuildPlayerContentSettings.cs.meta │ │ │ ├── UploadAddressableToAzureSettings.cs │ │ │ ├── UploadAddressableToAzureSettings.cs.meta │ │ │ ├── UploadAddressableToS3Settings.cs │ │ │ └── UploadAddressableToS3Settings.cs.meta │ │ ├── FileUpload.meta │ │ ├── FileUpload │ │ │ ├── AzureStorage.cs │ │ │ ├── AzureStorage.cs.meta │ │ │ ├── Ftp.cs │ │ │ ├── Ftp.cs.meta │ │ │ ├── S3.cs │ │ │ └── S3.cs.meta │ │ ├── PropertyDrawers.meta │ │ └── PropertyDrawers │ │ │ ├── LazyAssetPropertyDrawer.cs │ │ │ ├── LazyAssetPropertyDrawer.cs.meta │ │ │ ├── LazyScenePropertyDrawer.cs │ │ │ └── LazyScenePropertyDrawer.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── ExtensionMethods.cs │ │ ├── ExtensionMethods.cs.meta │ │ ├── LazyAsset.meta │ │ └── LazyAsset │ │ ├── ILazyAsset.cs │ │ ├── ILazyAsset.cs.meta │ │ ├── ILazyScene.cs │ │ ├── ILazyScene.cs.meta │ │ ├── LazyAsset.cs │ │ ├── LazyAsset.cs.meta │ │ ├── LazyAssetT.cs │ │ ├── LazyAssetT.cs.meta │ │ ├── LazyAssetTypes.meta │ │ └── LazyAssetTypes │ │ ├── LazyAnimationClip.cs │ │ ├── LazyAnimationClip.cs.meta │ │ ├── LazyGameObject.cs │ │ ├── LazyGameObject.cs.meta │ │ ├── LazyScene.cs │ │ ├── LazyScene.cs.meta │ │ ├── LazySprite.cs │ │ ├── LazySprite.cs.meta │ │ ├── LazySpriteAtlas.cs │ │ └── LazySpriteAtlas.cs.meta ├── Lost.Ads.meta ├── Lost.Ads │ ├── Editor.meta │ ├── Editor │ │ ├── LostAdsSettings.cs │ │ └── LostAdsSettings.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AdsManager.cs │ │ ├── AdsManager.cs.meta │ │ ├── IAdProvider.cs │ │ ├── IAdProvider.cs.meta │ │ ├── LostAdsSettingsRuntime.cs │ │ ├── LostAdsSettingsRuntime.cs.meta │ │ ├── UnityAdsProvider.cs │ │ └── UnityAdsProvider.cs.meta ├── Lost.Analytics.meta ├── Lost.Analytics │ ├── Editor.meta │ ├── Editor │ │ ├── LostAnalyticsSettings.cs │ │ └── LostAnalyticsSettings.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AnalyticsEnums.cs │ │ ├── AnalyticsEnums.cs.meta │ │ ├── AnalyticsEvent.cs │ │ ├── AnalyticsEvent.cs.meta │ │ ├── AnalyticsManager.cs │ │ ├── AnalyticsManager.cs.meta │ │ ├── IAnalyticsProvider.cs │ │ ├── IAnalyticsProvider.cs.meta │ │ ├── LostAnalyticsSettingsRuntime.cs │ │ └── LostAnalyticsSettingsRuntime.cs.meta ├── Lost.AppConfig.meta ├── Lost.AppConfig │ ├── Editor.meta │ ├── Editor │ │ ├── AppConfig.meta │ │ ├── AppConfig │ │ │ ├── AppConfig.cs │ │ │ ├── AppConfig.cs.meta │ │ │ ├── AppConfigCustomEditor.cs │ │ │ ├── AppConfigCustomEditor.cs.meta │ │ │ ├── AppConfigSettings.cs │ │ │ ├── AppConfigSettings.cs.meta │ │ │ ├── AppConfigSettingsOrderAttribute.cs │ │ │ ├── AppConfigSettingsOrderAttribute.cs.meta │ │ │ ├── BuildTargetGroupUtil.cs │ │ │ ├── BuildTargetGroupUtil.cs.meta │ │ │ ├── EditorAppConfig.cs │ │ │ ├── EditorAppConfig.cs.meta │ │ │ ├── EditorAppConfigBuildHelper.cs │ │ │ ├── EditorAppConfigBuildHelper.cs.meta │ │ │ ├── EditorAppConfigDefinesHelper.cs │ │ │ ├── EditorAppConfigDefinesHelper.cs.meta │ │ │ ├── EditorAppConfigFileBuilder.cs │ │ │ └── EditorAppConfigFileBuilder.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── ObjectExtensions.cs │ │ │ └── ObjectExtensions.cs.meta │ │ ├── Utilities.meta │ │ └── Utilities │ │ │ ├── TypeUtil.cs │ │ │ └── TypeUtil.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AppConfig.meta │ │ ├── AppConfig │ │ ├── DevicePlatform.cs │ │ ├── DevicePlatform.cs.meta │ │ ├── RuntimeAppConfig.cs │ │ └── RuntimeAppConfig.cs.meta │ │ ├── CloudBuild.meta │ │ └── CloudBuild │ │ ├── CloudBuildManifest.cs │ │ ├── CloudBuildManifest.cs.meta │ │ ├── MiniJSON.cs │ │ └── MiniJSON.cs.meta ├── Lost.AppInitialization.meta ├── Lost.AppInitialization │ ├── Runtime.meta │ └── Runtime │ │ ├── AppStarter.cs │ │ ├── AppStarter.cs.meta │ │ ├── IAPCatalog.cs │ │ ├── IAPCatalog.cs.meta │ │ ├── LazyLoader.cs │ │ └── LazyLoader.cs.meta ├── Lost.Behaviours.meta ├── Lost.Behaviours │ ├── Editor.meta │ ├── Editor │ │ ├── ChildSpacerEditor.cs │ │ └── ChildSpacerEditor.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AnimatorHelper.cs │ │ ├── AnimatorHelper.cs.meta │ │ ├── CameraShake.cs │ │ ├── CameraShake.cs.meta │ │ ├── ChildSpacer.cs │ │ ├── ChildSpacer.cs.meta │ │ ├── DelayDisableComponents.cs │ │ ├── DelayDisableComponents.cs.meta │ │ ├── DelayDisableGameObject.cs │ │ ├── DelayDisableGameObject.cs.meta │ │ ├── Destroying.meta │ │ ├── Destroying │ │ ├── DestroyOnAwake.cs │ │ ├── DestroyOnAwake.cs.meta │ │ ├── FallAndDestroy.cs │ │ ├── FallAndDestroy.cs.meta │ │ ├── WaitAndDestroy.cs │ │ ├── WaitAndDestroy.cs.meta │ │ ├── WaitFadeOutAndDestroy.cs │ │ └── WaitFadeOutAndDestroy.cs.meta │ │ ├── DontDestroyOnLoad.cs │ │ ├── DontDestroyOnLoad.cs.meta │ │ ├── GroundMeshDecal.cs │ │ ├── GroundMeshDecal.cs.meta │ │ ├── RandomVelocityOnAwake.cs │ │ ├── RandomVelocityOnAwake.cs.meta │ │ ├── Rotate.cs │ │ ├── Rotate.cs.meta │ │ ├── Statemachine.meta │ │ └── Statemachine │ │ ├── DisableAnimatorOnExit.cs │ │ └── DisableAnimatorOnExit.cs.meta ├── Lost.Collections.meta ├── Lost.Collections │ ├── Editor.meta │ ├── Editor │ │ ├── IdBagTest.cs │ │ └── IdBagTest.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── ConcurrentList.cs │ │ ├── ConcurrentList.cs.meta │ │ ├── ConcurrentQueue.cs │ │ ├── ConcurrentQueue.cs.meta │ │ ├── ConcurrentStack.cs │ │ ├── ConcurrentStack.cs.meta │ │ ├── IdBag.cs │ │ ├── IdBag.cs.meta │ │ ├── SerializableDictionary.cs │ │ └── SerializableDictionary.cs.meta ├── Lost.Core.meta ├── Lost.Core │ ├── Editor.meta │ ├── Editor │ │ ├── AppConfigs.meta │ │ └── AppConfigs │ │ │ ├── LostDefineSettings.cs │ │ │ └── LostDefineSettings.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Platform.cs │ │ └── Platform.cs.meta ├── Lost.Dictionary.meta ├── Lost.Dictionary │ ├── Editor.meta │ ├── Editor │ │ ├── DictionaryEditor.cs │ │ ├── DictionaryEditor.cs.meta │ │ ├── DictionaryTest.cs │ │ └── DictionaryTest.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── DefaultDictionary.asset │ │ ├── DefaultDictionary.asset.meta │ │ ├── Dictionary.cs │ │ └── Dictionary.cs.meta ├── Lost.EditorGrid.meta ├── Lost.EditorGrid │ ├── Editor.meta │ ├── Editor │ │ ├── EditorGrid.meta │ │ ├── EditorGrid │ │ │ ├── EditorGrid.cs │ │ │ ├── EditorGrid.cs.meta │ │ │ ├── EditorGridDefinition.cs │ │ │ ├── EditorGridDefinition.cs.meta │ │ │ ├── Scopes.meta │ │ │ ├── Scopes │ │ │ │ ├── BeginGridRowScope.cs │ │ │ │ ├── BeginGridRowScope.cs.meta │ │ │ │ ├── BeginGridScope.cs │ │ │ │ ├── BeginGridScope.cs.meta │ │ │ │ ├── FoldoutScope.cs │ │ │ │ ├── FoldoutScope.cs.meta │ │ │ │ ├── LabelWidthScope.cs │ │ │ │ └── LabelWidthScope.cs.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── EditorGridTest.cs │ │ │ │ └── EditorGridTest.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── LostIcons.meta │ │ │ └── LostIcons │ │ │ │ ├── Add.png │ │ │ │ ├── Add.png.meta │ │ │ │ ├── Delete.png │ │ │ │ ├── Delete.png.meta │ │ │ │ ├── Down.png │ │ │ │ ├── Down.png.meta │ │ │ │ ├── Up.png │ │ │ │ └── Up.png.meta │ │ ├── Utilities.meta │ │ └── Utilities │ │ │ ├── ButtonUtil.cs │ │ │ ├── ButtonUtil.cs.meta │ │ │ ├── ColorUtil.cs │ │ │ └── ColorUtil.cs.meta │ ├── README.md │ └── README.md.meta ├── Lost.EditorTools.meta ├── Lost.EditorTools │ ├── Editor.meta │ ├── Editor │ │ ├── AnimatorTools.meta │ │ ├── AnimatorTools │ │ │ ├── AnimatorEditorWindow.cs │ │ │ └── AnimatorEditorWindow.cs.meta │ │ ├── AppConfig.meta │ │ ├── AppConfig │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ │ ├── AndroidBuildSettings.cs │ │ │ │ ├── AndroidBuildSettings.cs.meta │ │ │ │ ├── AndroidKeystoreSettings.cs │ │ │ │ ├── AndroidKeystoreSettings.cs.meta │ │ │ │ ├── AndroidStoreSetting.cs │ │ │ │ ├── AndroidStoreSetting.cs.meta │ │ │ │ ├── GooglePlayUploadSettings.cs │ │ │ │ └── GooglePlayUploadSettings.cs.meta │ │ │ ├── AndroidX.meta │ │ │ ├── AndroidX │ │ │ │ ├── AndroidXSettings.cs │ │ │ │ └── AndroidXSettings.cs.meta │ │ │ ├── App.meta │ │ │ ├── App │ │ │ │ ├── BundleIdentifierSetting.cs │ │ │ │ ├── BundleIdentifierSetting.cs.meta │ │ │ │ ├── CacheServerSettings.cs │ │ │ │ ├── CacheServerSettings.cs.meta │ │ │ │ ├── CodeAnalysisSettings.cs │ │ │ │ ├── CodeAnalysisSettings.cs.meta │ │ │ │ ├── DevelopmentBuildSetting.cs │ │ │ │ ├── DevelopmentBuildSetting.cs.meta │ │ │ │ ├── GeneralAppSettings.cs │ │ │ │ ├── GeneralAppSettings.cs.meta │ │ │ │ ├── SceneListSettings.cs │ │ │ │ └── SceneListSettings.cs.meta │ │ │ ├── CloudBuild.meta │ │ │ ├── CloudBuild │ │ │ │ ├── CloudBuildTestSettings.cs │ │ │ │ ├── CloudBuildTestSettings.cs.meta │ │ │ │ ├── CopyCloudBuildDLLSettings.cs │ │ │ │ ├── CopyCloudBuildDLLSettings.cs.meta │ │ │ │ ├── StrictModeSettings.cs │ │ │ │ └── StrictModeSettings.cs.meta │ │ │ ├── HokeyApp.meta │ │ │ ├── HokeyApp │ │ │ │ ├── UploadToHockeyAppSettings.cs │ │ │ │ └── UploadToHockeyAppSettings.cs.meta │ │ │ ├── Ios.meta │ │ │ ├── Ios │ │ │ │ ├── IosProvisioningSettings.cs │ │ │ │ ├── IosProvisioningSettings.cs.meta │ │ │ │ ├── IosSettings.cs │ │ │ │ ├── IosSettings.cs.meta │ │ │ │ ├── IosXCodeSetting.cs │ │ │ │ ├── IosXCodeSetting.cs.meta │ │ │ │ ├── TestFlightUploadSettings.cs │ │ │ │ └── TestFlightUploadSettings.cs.meta │ │ │ ├── OverrideTemplates.meta │ │ │ ├── OverrideTemplates │ │ │ │ ├── OverrideTemplatesSettings.cs │ │ │ │ ├── OverrideTemplatesSettings.cs.meta │ │ │ │ ├── TemplateScriptAssetProcessor.cs │ │ │ │ └── TemplateScriptAssetProcessor.cs.meta │ │ │ ├── Perforce.meta │ │ │ └── Perforce │ │ │ │ ├── P4IgnoreSettings.cs │ │ │ │ ├── P4IgnoreSettings.cs.meta │ │ │ │ ├── PerforceSettings.cs │ │ │ │ ├── PerforceSettings.cs.meta │ │ │ │ ├── WorkspaceOverrideSetting.cs │ │ │ │ └── WorkspaceOverrideSetting.cs.meta │ │ ├── BuildValidator.meta │ │ ├── BuildValidator │ │ │ ├── BuildValidatorAppConfig.cs │ │ │ └── BuildValidatorAppConfig.cs.meta │ │ ├── ContextMenu.meta │ │ ├── ContextMenu │ │ │ ├── ApplyMeshCollidersHelper.cs │ │ │ ├── ApplyMeshCollidersHelper.cs.meta │ │ │ ├── ContextMenuTools.cs │ │ │ ├── ContextMenuTools.cs.meta │ │ │ ├── PrintGlobalPosition.cs │ │ │ ├── PrintGlobalPosition.cs.meta │ │ │ ├── RectTransformContextMenus.cs │ │ │ └── RectTransformContextMenus.cs.meta │ │ ├── EditorUtil.cs │ │ ├── EditorUtil.cs.meta │ │ ├── Editorconfig.meta │ │ ├── Editorconfig │ │ │ ├── EditorconfigSolutionItem.cs │ │ │ └── EditorconfigSolutionItem.cs.meta │ │ ├── FileUtil.cs │ │ ├── FileUtil.cs.meta │ │ ├── FolderFinder.meta │ │ ├── FolderFinder │ │ │ ├── FolderFinder.cs │ │ │ └── FolderFinder.cs.meta │ │ ├── LazyGuidGenerator.cs │ │ ├── LazyGuidGenerator.cs.meta │ │ ├── Lighting.meta │ │ ├── Lighting │ │ │ ├── BuildLightingHelper.cs │ │ │ └── BuildLightingHelper.cs.meta │ │ ├── MenuItemTools.cs │ │ ├── MenuItemTools.cs.meta │ │ ├── PresetImportPerFolder.cs │ │ ├── PresetImportPerFolder.cs.meta │ │ ├── PropertyAttributes.meta │ │ ├── PropertyAttributes │ │ │ ├── ReadOnlyPropertyDrawer.cs │ │ │ └── ReadOnlyPropertyDrawer.cs.meta │ │ ├── ReferenceFinder.meta │ │ └── ReferenceFinder │ │ │ ├── ReferenceFinder.cs │ │ │ └── ReferenceFinder.cs.meta │ ├── Files.meta │ ├── Files │ │ ├── TemplateFiles.meta │ │ ├── TemplateFiles │ │ │ ├── NewEditorTest.cs.txt │ │ │ ├── NewEditorTest.cs.txt.meta │ │ │ ├── NewMonoBehaviour.cs.txt │ │ │ ├── NewMonoBehaviour.cs.txt.meta │ │ │ ├── NewPlayableAsset.cs.txt │ │ │ ├── NewPlayableAsset.cs.txt.meta │ │ │ ├── NewPlayableBehaviour.cs.txt │ │ │ ├── NewPlayableBehaviour.cs.txt.meta │ │ │ ├── NewStateMachineBehaviourScript.cs.txt │ │ │ ├── NewStateMachineBehaviourScript.cs.txt.meta │ │ │ ├── NewSubStateMachineBehaviourScript.cs.txt │ │ │ └── NewSubStateMachineBehaviourScript.cs.txt.meta │ │ ├── editorconfig.txt │ │ ├── editorconfig.txt.meta │ │ ├── gitignore.txt │ │ ├── gitignore.txt.meta │ │ ├── p4ignore.txt │ │ └── p4ignore.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── BuildValidator.meta │ │ ├── BuildValidator │ │ ├── IValidate.cs │ │ └── IValidate.cs.meta │ │ ├── PropertyAttributes.meta │ │ └── PropertyAttributes │ │ ├── ReadOnlyAttribute.cs │ │ └── ReadOnlyAttribute.cs.meta ├── Lost.Events.meta ├── Lost.Events │ ├── Runtime.meta │ └── Runtime │ │ ├── BoolEvent.cs │ │ ├── BoolEvent.cs.meta │ │ ├── DoubleEvent.cs │ │ ├── DoubleEvent.cs.meta │ │ ├── FloatEvent.cs │ │ ├── FloatEvent.cs.meta │ │ ├── IntEvent.cs │ │ ├── IntEvent.cs.meta │ │ ├── OneParamEvent.cs │ │ ├── OneParamEvent.cs.meta │ │ ├── StringEvent.cs │ │ ├── StringEvent.cs.meta │ │ ├── ThreeParamEvent.cs │ │ ├── ThreeParamEvent.cs.meta │ │ ├── TwoParamEvent.cs │ │ ├── TwoParamEvent.cs.meta │ │ ├── VoidEvent.cs │ │ └── VoidEvent.cs.meta ├── Lost.Experimental.meta ├── Lost.Experimental │ ├── CalledByUnityEvent.meta │ ├── CalledByUnityEvent │ │ ├── CalledByUnityEventAttribute.cs │ │ ├── CalledByUnityEventAttribute.cs.meta │ │ ├── CalledByUnityEventBuildVerification.cs │ │ ├── CalledByUnityEventBuildVerification.cs.meta │ │ ├── README.md │ │ └── README.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── PostProcessors.meta │ │ └── PostProcessors │ │ │ ├── SpritePostProcessor.cs │ │ │ └── SpritePostProcessor.cs.meta │ ├── JsonServices.meta │ ├── JsonServices │ │ ├── JsonServiceClient.cs │ │ └── JsonServiceClient.cs.meta │ ├── Localization.meta │ ├── Localization │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── LocTextPropertyDrawer.cs │ │ │ ├── LocTextPropertyDrawer.cs.meta │ │ │ ├── LocalizationTableEditor.cs │ │ │ └── LocalizationTableEditor.cs.meta │ │ ├── IEntry.cs │ │ ├── IEntry.cs.meta │ │ ├── LocLanguage.cs │ │ ├── LocLanguage.cs.meta │ │ ├── LocText.cs │ │ ├── LocText.cs.meta │ │ ├── LocalizationTable.cs │ │ └── LocalizationTable.cs.meta │ ├── PrefabPlacer.cs │ ├── PrefabPlacer.cs.meta │ ├── PrefabPlacer.meta │ ├── PrefabPlacer │ │ ├── PrefabPlacer1.cs │ │ ├── PrefabPlacer1.cs.meta │ │ ├── PrefabPlacer2.cs │ │ └── PrefabPlacer2.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Segment.meta │ ├── Segment │ │ ├── LocalStore.cs │ │ ├── LocalStore.cs.meta │ │ ├── Segment.cs │ │ └── Segment.cs.meta │ ├── Serialization.meta │ ├── Serialization │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── BlobMemberAttribute.cs │ │ │ ├── BlobMemberAttribute.cs.meta │ │ │ ├── OnBlobDeserializedAttribute.cs │ │ │ └── OnBlobDeserializedAttribute.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── BinaryReaderExtensions.cs │ │ │ ├── BinaryReaderExtensions.cs.meta │ │ │ ├── BinaryWriterExtensions.cs │ │ │ └── BinaryWriterExtensions.cs.meta │ │ ├── IBinaryBlob.cs │ │ └── IBinaryBlob.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── SettingsTests.cs │ │ │ └── SettingsTests.cs.meta │ │ ├── Setting.cs │ │ ├── Setting.cs.meta │ │ ├── Settings.cs │ │ └── Settings.cs.meta │ ├── WhatsNewManager.cs │ └── WhatsNewManager.cs.meta ├── Lost.Extensions.meta ├── Lost.Extensions │ ├── Editor.meta │ ├── Editor │ │ ├── SerializedPropertyExtensions.cs │ │ └── SerializedPropertyExtensions.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AnimationCurveExtensions.cs │ │ ├── AnimationCurveExtensions.cs.meta │ │ ├── AnimatorExtensions.cs │ │ ├── AnimatorExtensions.cs.meta │ │ ├── ByteArrayExtensions.cs │ │ ├── ByteArrayExtensions.cs.meta │ │ ├── CanvasGroupExtensions.cs │ │ ├── CanvasGroupExtensions.cs.meta │ │ ├── CharExtensions.cs │ │ ├── CharExtensions.cs.meta │ │ ├── ColorExtensions.cs │ │ ├── ColorExtensions.cs.meta │ │ ├── DateTimeExtensions.cs │ │ ├── DateTimeExtensions.cs.meta │ │ ├── DictionaryExtensions.cs │ │ ├── DictionaryExtensions.cs.meta │ │ ├── GameObjectExtensions.cs │ │ ├── GameObjectExtensions.cs.meta │ │ ├── GraphicExtensions.cs │ │ ├── GraphicExtensions.cs.meta │ │ ├── ICollectionExtensions.cs │ │ ├── ICollectionExtensions.cs.meta │ │ ├── IEumerableExtensions.cs │ │ ├── IEumerableExtensions.cs.meta │ │ ├── MaterialExtensions.cs │ │ ├── MaterialExtensions.cs.meta │ │ ├── Matrix4x4Extensions.cs │ │ ├── Matrix4x4Extensions.cs.meta │ │ ├── MonoBehaviourExtensions.cs │ │ ├── MonoBehaviourExtensions.cs.meta │ │ ├── NumericExtensions.cs │ │ ├── NumericExtensions.cs.meta │ │ ├── RandomExtensions.cs │ │ ├── RandomExtensions.cs.meta │ │ ├── RectExtensions.cs │ │ ├── RectExtensions.cs.meta │ │ ├── RectTransformExtensions.cs │ │ ├── RectTransformExtensions.cs.meta │ │ ├── StringExtensions.cs │ │ ├── StringExtensions.cs.meta │ │ ├── TransformExtensions.cs │ │ ├── TransformExtensions.cs.meta │ │ ├── UnityEventExtensions.cs │ │ ├── UnityEventExtensions.cs.meta │ │ ├── Vector2Extensions.cs │ │ ├── Vector2Extensions.cs.meta │ │ ├── Vector3Extensions.cs │ │ └── Vector3Extensions.cs.meta ├── Lost.IAP.meta ├── Lost.IAP │ ├── Editor.meta │ ├── Editor │ │ ├── AppConfig.meta │ │ └── AppConfig │ │ │ ├── CloudMoolahSettings.cs │ │ │ └── CloudMoolahSettings.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Exceptions.meta │ │ ├── Exceptions │ │ ├── PurchasingException.cs │ │ ├── PurchasingException.cs.meta │ │ ├── PurchasingInitializationException.cs │ │ ├── PurchasingInitializationException.cs.meta │ │ ├── PurchasingInitializationTimeOutException.cs │ │ └── PurchasingInitializationTimeOutException.cs.meta │ │ ├── UnityPurchasingManager.cs │ │ └── UnityPurchasingManager.cs.meta ├── Lost.Input.meta ├── Lost.Input │ ├── Runtime.meta │ └── Runtime │ │ ├── Input.cs │ │ ├── Input.cs.meta │ │ ├── InputHandler.cs │ │ ├── InputHandler.cs.meta │ │ ├── InputManager.cs │ │ ├── InputManager.cs.meta │ │ ├── Keyboard.meta │ │ ├── Keyboard │ │ ├── KeyboardButton.cs │ │ ├── KeyboardButton.cs.meta │ │ ├── KeyboardManager.cs │ │ └── KeyboardManager.cs.meta │ │ ├── Trigger.meta │ │ └── Trigger │ │ ├── Trigger.cs │ │ ├── Trigger.cs.meta │ │ ├── Vector2Trigger.cs │ │ └── Vector2Trigger.cs.meta ├── Lost.InteractivePlants.meta ├── Lost.InteractivePlants │ ├── Editor.meta │ ├── Editor │ │ ├── PlantDefinitionEditor.cs │ │ ├── PlantDefinitionEditor.cs.meta │ │ ├── PlantGeneratorEditor.cs │ │ └── PlantGeneratorEditor.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── PlantDefinition.cs │ │ ├── PlantDefinition.cs.meta │ │ ├── PlantGenerator.cs │ │ ├── PlantGenerator.cs.meta │ │ ├── PlantGeneratorBranch.cs │ │ ├── PlantGeneratorBranch.cs.meta │ │ ├── RandomUtil.cs │ │ ├── RandomUtil.cs.meta │ │ ├── SuitableRotationSystem.cs │ │ └── SuitableRotationSystem.cs.meta ├── Lost.Localization.meta ├── Lost.Localization │ ├── Editor.meta │ ├── Editor │ │ ├── LocalizationMenuItems.cs │ │ └── LocalizationMenuItems.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Language.cs │ │ ├── Language.cs.meta │ │ ├── Languages.cs │ │ ├── Languages.cs.meta │ │ ├── Localization.cs │ │ ├── Localization.cs.meta │ │ ├── LocalizedString.cs │ │ ├── LocalizedString.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ ├── ChangeLanguageButton.cs │ │ ├── ChangeLanguageButton.cs.meta │ │ ├── ChangeLanguageToggle.cs │ │ └── ChangeLanguageToggle.cs.meta ├── Lost.Logging.meta ├── Lost.Logging │ ├── Editor.meta │ ├── Editor │ │ ├── LostLoggingSettings.cs │ │ └── LostLoggingSettings.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── ILoggingProvider.cs │ │ ├── ILoggingProvider.cs.meta │ │ ├── LoggingManager.cs │ │ ├── LoggingManager.cs.meta │ │ ├── LostLoggingSettingsRuntime.cs │ │ └── LostLoggingSettingsRuntime.cs.meta ├── Lost.Networking.meta ├── Lost.Networking │ ├── Editor.meta │ ├── Editor │ │ ├── NetworkIdentityEditor.cs │ │ └── NetworkIdentityEditor.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── GameClient.cs │ │ ├── GameClient.cs.meta │ │ ├── GameServer.cs │ │ ├── GameServer.cs.meta │ │ ├── IClientTransport.cs │ │ ├── IClientTransport.cs.meta │ │ ├── IServerTransport.cs │ │ ├── IServerTransport.cs.meta │ │ ├── MessageCollection.cs │ │ ├── MessageCollection.cs.meta │ │ ├── Messages.meta │ │ ├── Messages │ │ ├── ClientToServer.meta │ │ ├── ClientToServer │ │ │ ├── JoinServerRequestMessage.cs │ │ │ ├── JoinServerRequestMessage.cs.meta │ │ │ ├── UpdateUserInfoMessage.cs │ │ │ └── UpdateUserInfoMessage.cs.meta │ │ ├── Message.cs │ │ ├── Message.cs.meta │ │ ├── ServerToClient.meta │ │ ├── ServerToClient │ │ │ ├── JoinServerResponseMessage.cs │ │ │ ├── JoinServerResponseMessage.cs.meta │ │ │ ├── UserDisconnectedMessage.cs │ │ │ ├── UserDisconnectedMessage.cs.meta │ │ │ ├── UserInfoMessage.cs │ │ │ └── UserInfoMessage.cs.meta │ │ ├── UserInfo.cs │ │ └── UserInfo.cs.meta │ │ ├── NetBuffer.cs │ │ ├── NetBuffer.cs.meta │ │ ├── NetworkReader.cs │ │ ├── NetworkReader.cs.meta │ │ ├── NetworkWriter.cs │ │ ├── NetworkWriter.cs.meta │ │ ├── Transports.meta │ │ ├── Transports │ │ ├── DarkRiftClientTransport.cs │ │ ├── DarkRiftClientTransport.cs.meta │ │ ├── DarkRiftServerTransport.cs │ │ ├── DarkRiftServerTransport.cs.meta │ │ ├── LiteNetLibClientTransport.cs │ │ ├── LiteNetLibClientTransport.cs.meta │ │ ├── LiteNetLibServerTransport.cs │ │ └── LiteNetLibServerTransport.cs.meta │ │ ├── Unity.meta │ │ ├── Unity │ │ ├── Behaviours.meta │ │ ├── Behaviours │ │ │ ├── NetworkBehaviour.cs │ │ │ ├── NetworkBehaviour.cs.meta │ │ │ ├── NetworkIdentity.cs │ │ │ ├── NetworkIdentity.cs.meta │ │ │ ├── NetworkTransform.cs │ │ │ └── NetworkTransform.cs.meta │ │ ├── Messages.meta │ │ ├── Messages │ │ │ ├── NetworkBehavoiurMessage.cs │ │ │ ├── NetworkBehavoiurMessage.cs.meta │ │ │ ├── NetworkIdentitiesDestroyed.cs │ │ │ ├── NetworkIdentitiesDestroyed.cs.meta │ │ │ ├── NetworkIdentityCreated.cs │ │ │ ├── NetworkIdentityCreated.cs.meta │ │ │ ├── NetworkIdentityUpdate.cs │ │ │ └── NetworkIdentityUpdate.cs.meta │ │ ├── NetworkManager.cs │ │ ├── NetworkManager.cs.meta │ │ ├── NetworkUtil.cs │ │ ├── NetworkUtil.cs.meta │ │ ├── UnityGameClient.cs │ │ ├── UnityGameClient.cs.meta │ │ ├── UnityGameServer.cs │ │ └── UnityGameServer.cs.meta │ │ ├── UnityEditor.cs │ │ ├── UnityEditor.cs.meta │ │ ├── UnityEngine.cs │ │ └── UnityEngine.cs.meta ├── Lost.PlayFab.meta ├── Lost.PlayFab │ ├── Editor.meta │ ├── Editor │ │ ├── AppConfig.meta │ │ ├── AppConfig │ │ │ ├── PlayFabSettings.cs │ │ │ └── PlayFabSettings.cs.meta │ │ ├── AppVersions.meta │ │ ├── AppVersions │ │ │ ├── AppVersionsTitleDataEditor.cs │ │ │ └── AppVersionsTitleDataEditor.cs.meta │ │ ├── IAPCatalogExporter.cs │ │ ├── IAPCatalogExporter.cs.meta │ │ ├── PlayFabEditorAdmin.cs │ │ ├── PlayFabEditorAdmin.cs.meta │ │ ├── PlayFabServerSDK.dll │ │ ├── PlayFabServerSDK.dll.meta │ │ ├── PlayFabSettingsHelper.cs │ │ ├── PlayFabSettingsHelper.cs.meta │ │ ├── TitleDataEditor.meta │ │ └── TitleDataEditor │ │ │ ├── ITitleDataEditorWindow.cs │ │ │ ├── ITitleDataEditorWindow.cs.meta │ │ │ ├── TitleDataEditor.cs │ │ │ ├── TitleDataEditor.cs.meta │ │ │ ├── VersionedTitleDataEditor.cs │ │ │ └── VersionedTitleDataEditor.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Analytics.meta │ │ ├── Analytics │ │ ├── PlayFabAnalyticsProvider.cs │ │ └── PlayFabAnalyticsProvider.cs.meta │ │ ├── AppVersions.meta │ │ ├── AppVersions │ │ ├── AppVersion.cs │ │ ├── AppVersion.cs.meta │ │ ├── AppVersionRequest.cs │ │ ├── AppVersionRequest.cs.meta │ │ ├── AppVersionResult.cs │ │ ├── AppVersionResult.cs.meta │ │ ├── AppVersionsData.cs │ │ ├── AppVersionsData.cs.meta │ │ ├── AppVersionsTitleData.cs │ │ └── AppVersionsTitleData.cs.meta │ │ ├── ChangeDisplayNameButton.cs │ │ ├── ChangeDisplayNameButton.cs.meta │ │ ├── CloudScriptException.cs │ │ ├── CloudScriptException.cs.meta │ │ ├── Content.meta │ │ ├── Content │ │ ├── Dialogs.meta │ │ ├── Dialogs │ │ │ ├── Login.meta │ │ │ ├── Login │ │ │ │ ├── Login.controller │ │ │ │ ├── Login.controller.meta │ │ │ │ ├── Login.prefab │ │ │ │ └── Login.prefab.meta │ │ │ ├── SignUp.meta │ │ │ └── SignUp │ │ │ │ ├── SignUp.controller │ │ │ │ ├── SignUp.controller.meta │ │ │ │ ├── SignUp.prefab │ │ │ │ └── SignUp.prefab.meta │ │ ├── SpriteAtlases.meta │ │ ├── SpriteAtlases │ │ │ ├── LoginSprites.spriteatlas │ │ │ └── LoginSprites.spriteatlas.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── Box-Small.png │ │ │ ├── Box-Small.png.meta │ │ │ ├── Checked-Icon.png │ │ │ ├── Checked-Icon.png.meta │ │ │ ├── Lock-Icon-Small.png │ │ │ ├── Lock-Icon-Small.png.meta │ │ │ ├── Mail-Icon-Small.png │ │ │ ├── Mail-Icon-Small.png.meta │ │ │ ├── Popup-Close-Icon.png │ │ │ ├── Popup-Close-Icon.png.meta │ │ │ ├── Rectangle-Basic.png │ │ │ ├── Rectangle-Basic.png.meta │ │ │ ├── User-Plus-Icon-Small.png │ │ │ ├── User-Plus-Icon-Small.png.meta │ │ │ ├── White-Button.png │ │ │ ├── White-Button.png.meta │ │ │ ├── White-Popup-Background.png │ │ │ └── White-Popup-Background.png.meta │ │ ├── CustomServer.meta │ │ ├── CustomServer │ │ ├── AspNetCore.cs │ │ ├── AspNetCore.cs.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Inbox.meta │ │ │ ├── Inbox │ │ │ │ ├── DeleteInboxItemRequest.cs │ │ │ │ ├── DeleteInboxItemRequest.cs.meta │ │ │ │ ├── DeleteInboxItemResult.cs │ │ │ │ ├── DeleteInboxItemResult.cs.meta │ │ │ │ ├── GetInboxRequest.cs │ │ │ │ ├── GetInboxRequest.cs.meta │ │ │ │ ├── GetInboxResult.cs │ │ │ │ ├── GetInboxResult.cs.meta │ │ │ │ ├── InboxItem.cs │ │ │ │ └── InboxItem.cs.meta │ │ │ ├── Logging.meta │ │ │ ├── Logging │ │ │ │ ├── LogMessage.cs │ │ │ │ ├── LogMessage.cs.meta │ │ │ │ ├── LogMessageRequest.cs │ │ │ │ ├── LogMessageRequest.cs.meta │ │ │ │ ├── LogMessageResult.cs │ │ │ │ └── LogMessageResult.cs.meta │ │ │ ├── Rating.meta │ │ │ ├── Rating │ │ │ │ ├── Rating.cs │ │ │ │ ├── Rating.cs.meta │ │ │ │ ├── RatingRequest.cs │ │ │ │ ├── RatingRequest.cs.meta │ │ │ │ ├── RatingResult.cs │ │ │ │ └── RatingResult.cs.meta │ │ │ ├── Status.meta │ │ │ └── Status │ │ │ │ ├── GetFriendsStatusRequest.cs │ │ │ │ ├── GetFriendsStatusRequest.cs.meta │ │ │ │ ├── GetFriendsStatusResult.cs │ │ │ │ ├── GetFriendsStatusResult.cs.meta │ │ │ │ ├── Status.cs │ │ │ │ ├── Status.cs.meta │ │ │ │ ├── UpdateStatusRequest.cs │ │ │ │ ├── UpdateStatusRequest.cs.meta │ │ │ │ ├── UpdateStatusResult.cs │ │ │ │ └── UpdateStatusResult.cs.meta │ │ ├── CustomServerClient.cs │ │ ├── CustomServerClient.cs.meta │ │ ├── Managers.meta │ │ └── Managers │ │ │ ├── InboxManager.cs │ │ │ ├── InboxManager.cs.meta │ │ │ ├── StatusManager.cs │ │ │ └── StatusManager.cs.meta │ │ ├── Dialogs.meta │ │ ├── Dialogs │ │ ├── LogInDialog.cs │ │ ├── LogInDialog.cs.meta │ │ ├── SignUpDialog.cs │ │ └── SignUpDialog.cs.meta │ │ ├── FacebookException.cs │ │ ├── FacebookException.cs.meta │ │ ├── LZString.cs │ │ ├── LZString.cs.meta │ │ ├── Networking.meta │ │ ├── Networking │ │ ├── PlayFabGameClient.cs │ │ ├── PlayFabGameClient.cs.meta │ │ ├── PlayFabGameServer.cs │ │ ├── PlayFabGameServer.cs.meta │ │ ├── PlayFabGameServerUnity.cs │ │ ├── PlayFabGameServerUnity.cs.meta │ │ ├── PlayFabServerSettingsData.cs │ │ ├── PlayFabServerSettingsData.cs.meta │ │ ├── PlayFabUserInfoExtensions.cs │ │ └── PlayFabUserInfoExtensions.cs.meta │ │ ├── PF.meta │ │ ├── PF │ │ ├── CatalogHelper.cs │ │ ├── CatalogHelper.cs.meta │ │ ├── CharacterHelper.cs │ │ ├── CharacterHelper.cs.meta │ │ ├── CloudScriptHelper.cs │ │ ├── CloudScriptHelper.cs.meta │ │ ├── InventoryHelper.cs │ │ ├── InventoryHelper.cs.meta │ │ ├── LoginHelper.cs │ │ ├── LoginHelper.cs.meta │ │ ├── PF.Do.cs │ │ ├── PF.Do.cs.meta │ │ ├── PF.cs │ │ ├── PF.cs.meta │ │ ├── PurchasingHelper.cs │ │ ├── PurchasingHelper.cs.meta │ │ ├── PushNotifications.meta │ │ ├── PushNotifications │ │ │ ├── PushNotification.cs │ │ │ ├── PushNotification.cs.meta │ │ │ ├── PushNotificationsHelper.cs │ │ │ └── PushNotificationsHelper.cs.meta │ │ ├── TitleDataHelper.cs │ │ ├── TitleDataHelper.cs.meta │ │ ├── UserHelper.cs │ │ ├── UserHelper.cs.meta │ │ ├── VirtualCurrencyHelper.cs │ │ └── VirtualCurrencyHelper.cs.meta │ │ ├── PlayFabCloudScriptException.cs │ │ ├── PlayFabCloudScriptException.cs.meta │ │ ├── PlayFabConfigExtensions.cs │ │ ├── PlayFabConfigExtensions.cs.meta │ │ ├── PlayFabException.cs │ │ ├── PlayFabException.cs.meta │ │ ├── PlayFabLeaderboard.cs │ │ ├── PlayFabLeaderboard.cs.meta │ │ ├── PlayFabMessages.cs │ │ ├── PlayFabMessages.cs.meta │ │ ├── PlayFabServer.cs │ │ ├── PlayFabServer.cs.meta │ │ ├── PlayfabProfileManager.cs │ │ ├── PlayfabProfileManager.cs.meta │ │ ├── TitleData.meta │ │ └── TitleData │ │ ├── TitleData.cs │ │ ├── TitleData.cs.meta │ │ ├── VersionedTitleData.cs │ │ └── VersionedTitleData.cs.meta ├── Lost.Pooling.meta ├── Lost.Pooling │ ├── Runtime.meta │ └── Runtime │ │ ├── IPoolable.cs │ │ ├── IPoolable.cs.meta │ │ ├── Pool.cs │ │ ├── Pool.cs.meta │ │ ├── PooledObject.cs │ │ ├── PooledObject.cs.meta │ │ ├── Pooler.cs │ │ └── Pooler.cs.meta ├── Lost.RealtimeMessaging.meta ├── Lost.RealtimeMessaging │ ├── Editor.meta │ ├── Editor │ │ ├── RealtimeMessagingSettings.cs │ │ └── RealtimeMessagingSettings.cs.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── ably-dotnet-1.1.14.meta │ │ └── ably-dotnet-1.1.14 │ │ │ ├── src.meta │ │ │ └── src │ │ │ ├── CommonAssemblyInfo.cs │ │ │ ├── CommonAssemblyInfo.cs.meta │ │ │ ├── IO.Ably.NETStandard20.meta │ │ │ ├── IO.Ably.NETStandard20 │ │ │ ├── Platform.cs │ │ │ └── Platform.cs.meta │ │ │ ├── IO.Ably.Shared.meta │ │ │ └── IO.Ably.Shared │ │ │ ├── AblyAuth.cs │ │ │ ├── AblyAuth.cs.meta │ │ │ ├── AblyAuthUpdatedEventArgs.cs │ │ │ ├── AblyAuthUpdatedEventArgs.cs.meta │ │ │ ├── AblyException.cs │ │ │ ├── AblyException.cs.meta │ │ │ ├── AblyRealtime.cs │ │ │ ├── AblyRealtime.cs.meta │ │ │ ├── AblyRest.cs │ │ │ ├── AblyRest.cs.meta │ │ │ ├── ApiKey.cs │ │ │ ├── ApiKey.cs.meta │ │ │ ├── AuthMethod.cs │ │ │ ├── AuthMethod.cs.meta │ │ │ ├── AuthOptions.cs │ │ │ ├── AuthOptions.cs.meta │ │ │ ├── Capability.cs │ │ │ ├── Capability.cs.meta │ │ │ ├── CapabilityResource.cs │ │ │ ├── CapabilityResource.cs.meta │ │ │ ├── CipherParams.cs │ │ │ ├── CipherParams.cs.meta │ │ │ ├── ClientOptions.cs │ │ │ ├── ClientOptions.cs.meta │ │ │ ├── Config.cs │ │ │ ├── Config.cs.meta │ │ │ ├── CustomSerialisers.meta │ │ │ ├── CustomSerialisers │ │ │ ├── CapabilityJsonConverter.cs │ │ │ ├── CapabilityJsonConverter.cs.meta │ │ │ ├── DateTimeOffsetJsonConverter.cs │ │ │ ├── DateTimeOffsetJsonConverter.cs.meta │ │ │ ├── TimeSpanJsonConverter.cs │ │ │ └── TimeSpanJsonConverter.cs.meta │ │ │ ├── DataRequestQuery.cs │ │ │ ├── DataRequestQuery.cs.meta │ │ │ ├── DefaultLogger.cs │ │ │ ├── DefaultLogger.cs.meta │ │ │ ├── Defaults.cs │ │ │ ├── Defaults.cs.meta │ │ │ ├── Encryption.meta │ │ │ ├── Encryption │ │ │ ├── AesCipher.cs │ │ │ ├── AesCipher.cs.meta │ │ │ ├── Crypto.cs │ │ │ └── Crypto.cs.meta │ │ │ ├── EventEmitter.cs │ │ │ ├── EventEmitter.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── DateExtensions.cs │ │ │ ├── DateExtensions.cs.meta │ │ │ ├── DictionaryExtensions.cs │ │ │ ├── DictionaryExtensions.cs.meta │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── EnumerableExtensions.cs.meta │ │ │ ├── ObjectExtensions.cs │ │ │ ├── ObjectExtensions.cs.meta │ │ │ ├── PresenceExtensions.cs │ │ │ ├── PresenceExtensions.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── TaskExtensions.cs │ │ │ ├── TaskExtensions.cs.meta │ │ │ ├── UriExtensions.cs │ │ │ └── UriExtensions.cs.meta │ │ │ ├── Http.meta │ │ │ ├── Http │ │ │ ├── AblyHttpClient.cs │ │ │ ├── AblyHttpClient.cs.meta │ │ │ ├── AblyHttpOptions.cs │ │ │ ├── AblyHttpOptions.cs.meta │ │ │ ├── AblyRequest.cs │ │ │ ├── AblyRequest.cs.meta │ │ │ ├── AblyResponse.cs │ │ │ ├── AblyResponse.cs.meta │ │ │ ├── MimeTypes.cs │ │ │ └── MimeTypes.cs.meta │ │ │ ├── HttpPaginatedResponse.cs │ │ │ ├── HttpPaginatedResponse.cs.meta │ │ │ ├── HttpUtility.cs │ │ │ ├── HttpUtility.cs.meta │ │ │ ├── IAblyHttpClient.cs │ │ │ ├── IAblyHttpClient.cs.meta │ │ │ ├── IAuthCommands.cs │ │ │ ├── IAuthCommands.cs.meta │ │ │ ├── IChannelCipher.cs │ │ │ ├── IChannelCipher.cs.meta │ │ │ ├── IChannelCommands.cs │ │ │ ├── IChannelCommands.cs.meta │ │ │ ├── ILogger.cs │ │ │ ├── ILogger.cs.meta │ │ │ ├── IO.Ably.Shared.projitems │ │ │ ├── IO.Ably.Shared.projitems.meta │ │ │ ├── IO.Ably.Shared.shproj │ │ │ ├── IO.Ably.Shared.shproj.meta │ │ │ ├── IPlatform.cs │ │ │ ├── IPlatform.cs.meta │ │ │ ├── IRealtimeClient.cs │ │ │ ├── IRealtimeClient.cs.meta │ │ │ ├── IRestClient.cs │ │ │ ├── IRestClient.cs.meta │ │ │ ├── IoC.cs │ │ │ ├── IoC.cs.meta │ │ │ ├── JsonHelper.cs │ │ │ ├── JsonHelper.cs.meta │ │ │ ├── MessageEncoders.meta │ │ │ ├── MessageEncoders │ │ │ ├── Base64Encoder.cs │ │ │ ├── Base64Encoder.cs.meta │ │ │ ├── CipherEncoder.cs │ │ │ ├── CipherEncoder.cs.meta │ │ │ ├── JsonEncoder.cs │ │ │ ├── JsonEncoder.cs.meta │ │ │ ├── MessageEncoder.cs │ │ │ ├── MessageEncoder.cs.meta │ │ │ ├── MessageHandler.cs │ │ │ ├── MessageHandler.cs.meta │ │ │ ├── Utf8Encoder.cs │ │ │ └── Utf8Encoder.cs.meta │ │ │ ├── PaginatedRequestParams.cs │ │ │ ├── PaginatedRequestParams.cs.meta │ │ │ ├── PaginatedResult.cs │ │ │ ├── PaginatedResult.cs.meta │ │ │ ├── Protocol.cs │ │ │ ├── Protocol.cs.meta │ │ │ ├── QueryDirection.cs │ │ │ ├── QueryDirection.cs.meta │ │ │ ├── Realtime.meta │ │ │ ├── Realtime │ │ │ ├── ChannelAwaiter.cs │ │ │ ├── ChannelAwaiter.cs.meta │ │ │ ├── ChannelErrorEventArgs.cs │ │ │ ├── ChannelErrorEventArgs.cs.meta │ │ │ ├── ChannelEvent.cs │ │ │ ├── ChannelEvent.cs.meta │ │ │ ├── ChannelMessageProcessor.cs │ │ │ ├── ChannelMessageProcessor.cs.meta │ │ │ ├── ChannelProperties.cs │ │ │ ├── ChannelProperties.cs.meta │ │ │ ├── ChannelState.cs │ │ │ ├── ChannelState.cs.meta │ │ │ ├── ChannelStateChangedEventArgs.cs │ │ │ ├── ChannelStateChangedEventArgs.cs.meta │ │ │ ├── Connection.cs │ │ │ ├── Connection.cs.meta │ │ │ ├── ConnectionEvent.cs │ │ │ ├── ConnectionEvent.cs.meta │ │ │ ├── ConnectionState.cs │ │ │ ├── ConnectionState.cs.meta │ │ │ ├── ConnectionStateChangedEventArgs.cs │ │ │ ├── ConnectionStateChangedEventArgs.cs.meta │ │ │ ├── Handlers.cs │ │ │ ├── Handlers.cs.meta │ │ │ ├── IRealtimeChannel.cs │ │ │ ├── IRealtimeChannel.cs.meta │ │ │ ├── MessageHandlerAction.cs │ │ │ ├── MessageHandlerAction.cs.meta │ │ │ ├── Presence.GetParams.cs │ │ │ ├── Presence.GetParams.cs.meta │ │ │ ├── Presence.QueuedPresenceMessage.cs │ │ │ ├── Presence.QueuedPresenceMessage.cs.meta │ │ │ ├── Presence.cs │ │ │ ├── Presence.cs.meta │ │ │ ├── PresenceMap.cs │ │ │ ├── PresenceMap.cs.meta │ │ │ ├── RealtimeChannel.cs │ │ │ ├── RealtimeChannel.cs.meta │ │ │ ├── RealtimeChannels.cs │ │ │ ├── RealtimeChannels.cs.meta │ │ │ ├── RealtimeTransportData.cs │ │ │ └── RealtimeTransportData.cs.meta │ │ │ ├── Rest.meta │ │ │ ├── Rest │ │ │ ├── Channel.cs │ │ │ ├── Channel.cs.meta │ │ │ ├── ChannelOptions.cs │ │ │ ├── ChannelOptions.cs.meta │ │ │ ├── IChannel.cs │ │ │ ├── IChannel.cs.meta │ │ │ ├── RestChannels.cs │ │ │ └── RestChannels.cs.meta │ │ │ ├── Result.cs │ │ │ ├── Result.cs.meta │ │ │ ├── Statistics.cs │ │ │ ├── Statistics.cs.meta │ │ │ ├── SyncExtensions.cs │ │ │ ├── SyncExtensions.cs.meta │ │ │ ├── TaskConstants.cs │ │ │ ├── TaskConstants.cs.meta │ │ │ ├── TokenDetails.cs │ │ │ ├── TokenDetails.cs.meta │ │ │ ├── TokenParams.cs │ │ │ ├── TokenParams.cs.meta │ │ │ ├── TokenRequestPostData.cs │ │ │ ├── TokenRequestPostData.cs.meta │ │ │ ├── TokenResponse.cs │ │ │ ├── TokenResponse.cs.meta │ │ │ ├── Transport.meta │ │ │ ├── Transport │ │ │ ├── AcknowledgementProcessor.cs │ │ │ ├── AcknowledgementProcessor.cs.meta │ │ │ ├── ConnectionAttemptsInfo.cs │ │ │ ├── ConnectionAttemptsInfo.cs.meta │ │ │ ├── ConnectionHeartbeatRequest.cs │ │ │ ├── ConnectionHeartbeatRequest.cs.meta │ │ │ ├── ConnectionInfo.cs │ │ │ ├── ConnectionInfo.cs.meta │ │ │ ├── ConnectionManager.cs │ │ │ ├── ConnectionManager.cs.meta │ │ │ ├── IConnectionContext.cs │ │ │ ├── IConnectionContext.cs.meta │ │ │ ├── IConnectionManager.cs │ │ │ ├── IConnectionManager.cs.meta │ │ │ ├── ITransport.cs │ │ │ ├── ITransport.cs.meta │ │ │ ├── MessageAndCallback.cs │ │ │ ├── MessageAndCallback.cs.meta │ │ │ ├── MsWebSocketConnection.cs │ │ │ ├── MsWebSocketConnection.cs.meta │ │ │ ├── MsWebSocketTransport.cs │ │ │ ├── MsWebSocketTransport.cs.meta │ │ │ ├── States.meta │ │ │ ├── States │ │ │ │ ├── Connection.meta │ │ │ │ └── Connection │ │ │ │ │ ├── ConnectionClosedState.cs │ │ │ │ │ ├── ConnectionClosedState.cs.meta │ │ │ │ │ ├── ConnectionClosingState.cs │ │ │ │ │ ├── ConnectionClosingState.cs.meta │ │ │ │ │ ├── ConnectionConnectedState.cs │ │ │ │ │ ├── ConnectionConnectedState.cs.meta │ │ │ │ │ ├── ConnectionConnectingState.cs │ │ │ │ │ ├── ConnectionConnectingState.cs.meta │ │ │ │ │ ├── ConnectionDisconnectedState.cs │ │ │ │ │ ├── ConnectionDisconnectedState.cs.meta │ │ │ │ │ ├── ConnectionFailedState.cs │ │ │ │ │ ├── ConnectionFailedState.cs.meta │ │ │ │ │ ├── ConnectionInitializedState.cs │ │ │ │ │ ├── ConnectionInitializedState.cs.meta │ │ │ │ │ ├── ConnectionState.cs │ │ │ │ │ ├── ConnectionState.cs.meta │ │ │ │ │ ├── ConnectionSuspendedState.cs │ │ │ │ │ ├── ConnectionSuspendedState.cs.meta │ │ │ │ │ ├── ICountdownTimer.cs │ │ │ │ │ └── ICountdownTimer.cs.meta │ │ │ ├── TaskWrapper.cs │ │ │ ├── TaskWrapper.cs.meta │ │ │ ├── TransportParams.cs │ │ │ └── TransportParams.cs.meta │ │ │ ├── Types.meta │ │ │ ├── Types │ │ │ ├── AuthDetails.cs │ │ │ ├── AuthDetails.cs.meta │ │ │ ├── ConnectionDetailsMessage.cs │ │ │ ├── ConnectionDetailsMessage.cs.meta │ │ │ ├── ErrorInfo.cs │ │ │ ├── ErrorInfo.cs.meta │ │ │ ├── IEncodedMessage.cs │ │ │ ├── IEncodedMessage.cs.meta │ │ │ ├── Message.cs │ │ │ ├── Message.cs.meta │ │ │ ├── PresenceMessage.cs │ │ │ ├── PresenceMessage.cs.meta │ │ │ ├── ProtocolMessage.cs │ │ │ └── ProtocolMessage.cs.meta │ │ │ ├── Utils.meta │ │ │ ├── Utils │ │ │ ├── ActionOnDispose.cs │ │ │ ├── ActionOnDispose.cs.meta │ │ │ ├── ReflectionUtils.cs │ │ │ ├── ReflectionUtils.cs.meta │ │ │ ├── StringUtils.cs │ │ │ ├── StringUtils.cs.meta │ │ │ ├── TaskUtils.cs │ │ │ └── TaskUtils.cs.meta │ │ │ ├── app.config │ │ │ ├── app.config.meta │ │ │ ├── packages.config │ │ │ └── packages.config.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── RealtimeMessage.cs │ │ ├── RealtimeMessage.cs.meta │ │ ├── RealtimeMessageManager.cs │ │ ├── RealtimeMessageManager.cs.meta │ │ ├── RealtimeMessagingSettingsRuntime.cs │ │ └── RealtimeMessagingSettingsRuntime.cs.meta ├── Lost.RuntimeTools.meta ├── Lost.RuntimeTools │ ├── Editor.meta │ ├── Editor │ │ ├── DebugMenuSettings.cs │ │ ├── DebugMenuSettings.cs.meta │ │ ├── LimitScreenSizeSettings.cs │ │ ├── LimitScreenSizeSettings.cs.meta │ │ ├── TiinooSettings.cs │ │ └── TiinooSettings.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── DebugMenuSettingsRuntime.cs │ │ ├── DebugMenuSettingsRuntime.cs.meta │ │ ├── LimitScreenSizeSettingsRuntime.cs │ │ ├── LimitScreenSizeSettingsRuntime.cs.meta │ │ ├── TiinooSettingsRuntime.cs │ │ └── TiinooSettingsRuntime.cs.meta ├── Lost.Serialization.meta ├── Lost.Serialization │ ├── Plugins.meta │ ├── Plugins │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.dll.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── ColorConverter.cs │ │ ├── ColorConverter.cs.meta │ │ ├── JsonUtil.cs │ │ ├── JsonUtil.cs.meta │ │ ├── VectorConverter.cs │ │ └── VectorConverter.cs.meta ├── Lost.Singleton.meta ├── Lost.Singleton │ ├── Runtime.meta │ └── Runtime │ │ ├── CoroutineRunner.cs │ │ ├── CoroutineRunner.cs.meta │ │ ├── ObjectTracker.cs │ │ ├── ObjectTracker.cs.meta │ │ ├── Singleton.meta │ │ └── Singleton │ │ ├── SingletonGameObject.cs │ │ ├── SingletonGameObject.cs.meta │ │ ├── SingletonResource.cs │ │ ├── SingletonResource.cs.meta │ │ ├── SingletonScriptableObjectResource.cs │ │ ├── SingletonScriptableObjectResource.cs.meta │ │ ├── SingletonUtil.cs │ │ └── SingletonUtil.cs.meta ├── Lost.Spline.meta ├── Lost.Spline │ ├── Editor.meta │ ├── Editor │ │ ├── SplineEditor.cs │ │ ├── SplineEditor.cs.meta │ │ ├── SplinePointEditor.cs │ │ └── SplinePointEditor.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AnimateAlongSpline.cs │ │ ├── AnimateAlongSpline.cs.meta │ │ ├── Spline.cs │ │ ├── Spline.cs.meta │ │ ├── SplinePoint.cs │ │ └── SplinePoint.cs.meta ├── Lost.SpriteManager.meta ├── Lost.SpriteManager │ ├── Editor.meta │ ├── Editor │ │ ├── SpriteAtlasLoaderEditor.cs │ │ └── SpriteAtlasLoaderEditor.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── SpriteAtlasLoader.cs │ │ └── SpriteAtlasLoader.cs.meta ├── Lost.Storage.meta ├── Lost.Storage │ ├── Runtime.meta │ └── Runtime │ │ ├── LostPlayerPrefs.cs │ │ ├── LostPlayerPrefs.cs.meta │ │ ├── Obfuscator.cs │ │ └── Obfuscator.cs.meta ├── Lost.UI.meta ├── Lost.UI │ ├── Behaviours.meta │ ├── Behaviours │ │ ├── FindAndSetMainCamera.cs │ │ ├── FindAndSetMainCamera.cs.meta │ │ ├── ToggleHelper.cs │ │ ├── ToggleHelper.cs.meta │ │ ├── WaitForButtonClick.cs │ │ └── WaitForButtonClick.cs.meta │ ├── Buttons.meta │ ├── Buttons │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── LostButtonEditor.cs │ │ │ └── LostButtonEditor.cs.meta │ │ ├── LostButton.cs │ │ ├── LostButton.cs.meta │ │ ├── NoSubmitButton.cs │ │ ├── NoSubmitButton.cs.meta │ │ ├── StateExposedButton.cs │ │ └── StateExposedButton.cs.meta │ ├── Content.meta │ ├── Content │ │ ├── Animations.meta │ │ ├── Animations │ │ │ ├── Fade.controller │ │ │ ├── Fade.controller.meta │ │ │ ├── ScallInPopup.controller │ │ │ ├── ScallInPopup.controller.meta │ │ │ ├── Toggle.controller │ │ │ └── Toggle.controller.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── OpenSans-Regular SDF.asset │ │ │ ├── OpenSans-Regular SDF.asset.meta │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-Regular.ttf.meta │ │ ├── Prefabs.meta │ │ └── Prefabs │ │ │ ├── DebugMenuItem.prefab │ │ │ └── DebugMenuItem.prefab.meta │ ├── DebugMenu.meta │ ├── DebugMenu │ │ ├── DebugMenu.cs │ │ ├── DebugMenu.cs.meta │ │ ├── DebugMenuItem.cs │ │ ├── DebugMenuItem.cs.meta │ │ ├── DebugMenuListener.cs │ │ └── DebugMenuListener.cs.meta │ ├── Dialog.meta │ ├── Dialog │ │ ├── Dialog.cs │ │ ├── Dialog.cs.meta │ │ ├── DialogLogic.cs │ │ ├── DialogLogic.cs.meta │ │ ├── DialogManager.cs │ │ ├── DialogManager.cs.meta │ │ ├── DialogSetupHelper.cs │ │ ├── DialogSetupHelper.cs.meta │ │ ├── DialogStateMachine.cs │ │ └── DialogStateMachine.cs.meta │ ├── DialogTemplates.meta │ ├── DialogTemplates │ │ ├── ConnectToServer.prefab │ │ ├── ConnectToServer.prefab.meta │ │ ├── DebugMenu.prefab │ │ ├── DebugMenu.prefab.meta │ │ ├── MessageBox.prefab │ │ ├── MessageBox.prefab.meta │ │ ├── PurchaseItem.prefab │ │ ├── PurchaseItem.prefab.meta │ │ ├── SpinnerBox.prefab │ │ ├── SpinnerBox.prefab.meta │ │ ├── StringInputBox.prefab │ │ └── StringInputBox.prefab.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ContextMenu.cs │ │ ├── ContextMenu.cs.meta │ │ ├── DialogEditor.cs │ │ └── DialogEditor.cs.meta │ ├── GoToScene.cs │ ├── GoToScene.cs.meta │ ├── HDCanvas.cs │ ├── HDCanvas.cs.meta │ ├── InputBlocker.cs │ ├── InputBlocker.cs.meta │ ├── MaskSlider.cs │ ├── MaskSlider.cs.meta │ ├── OpenURL.cs │ ├── OpenURL.cs.meta │ ├── Prompts.meta │ ├── Prompts │ │ ├── ConnectToServer.cs │ │ ├── ConnectToServer.cs.meta │ │ ├── MessageBox.cs │ │ ├── MessageBox.cs.meta │ │ ├── PurchaseItem.cs │ │ ├── PurchaseItem.cs.meta │ │ ├── SpinnerBox.cs │ │ ├── SpinnerBox.cs.meta │ │ ├── StringInputBox.cs │ │ └── StringInputBox.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── RectTransformSpinner.cs │ ├── RectTransformSpinner.cs.meta │ ├── ScrollView.meta │ ├── ScrollView │ │ ├── FocusOnChild.cs │ │ ├── FocusOnChild.cs.meta │ │ ├── GridVirtualizer.cs │ │ ├── GridVirtualizer.cs.meta │ │ ├── ManualContentFitter.cs │ │ ├── ManualContentFitter.cs.meta │ │ ├── Padding.cs │ │ ├── Padding.cs.meta │ │ ├── VirtualizedScrollRect.cs │ │ └── VirtualizedScrollRect.cs.meta │ ├── Singleton.meta │ ├── Singleton │ │ ├── SingletonDialogResource.cs │ │ └── SingletonDialogResource.cs.meta │ ├── Text.meta │ ├── Text │ │ ├── BetterStringBuilder.cs │ │ ├── BetterStringBuilder.cs.meta │ │ ├── CountDownTimerText.cs │ │ ├── CountDownTimerText.cs.meta │ │ ├── IntText.cs │ │ ├── IntText.cs.meta │ │ ├── TimespanText.cs │ │ └── TimespanText.cs.meta │ ├── TintGroup.cs │ ├── TintGroup.cs.meta │ ├── Toggle.meta │ ├── Toggle │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── LostToggleEditor.cs │ │ │ └── LostToggleEditor.cs.meta │ │ ├── LostToggle.cs │ │ └── LostToggle.cs.meta │ ├── UIActions.meta │ ├── UIActions │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── UIActionsEditor.cs │ │ │ └── UIActionsEditor.cs.meta │ │ ├── OffsetAction.cs │ │ ├── OffsetAction.cs.meta │ │ ├── TintGraphicAction.cs │ │ ├── TintGraphicAction.cs.meta │ │ ├── UIAction.cs │ │ └── UIAction.cs.meta │ ├── Util.meta │ └── Util │ │ ├── UIUtil.cs │ │ └── UIUtil.cs.meta ├── Lost.UnityTasks.meta ├── Lost.UnityTasks │ ├── Runtime.meta │ └── Runtime │ │ ├── Exceptions.meta │ │ ├── Exceptions │ │ ├── UnityTaskCanceledException.cs │ │ ├── UnityTaskCanceledException.cs.meta │ │ ├── UnityTaskTimeoutException.cs │ │ └── UnityTaskTimeoutException.cs.meta │ │ ├── IUnityTask.cs │ │ ├── IUnityTask.cs.meta │ │ ├── UnityTask.cs │ │ └── UnityTask.cs.meta ├── Lost.Utilities.meta ├── Lost.Utilities │ ├── Runtime.meta │ └── Runtime │ │ ├── CosUtil.cs │ │ ├── CosUtil.cs.meta │ │ ├── CursorUtil.cs │ │ ├── CursorUtil.cs.meta │ │ ├── Cylinder.cs │ │ ├── Cylinder.cs.meta │ │ ├── GizmosUtil.cs │ │ ├── GizmosUtil.cs.meta │ │ ├── IdGeneratorUtil.cs │ │ ├── IdGeneratorUtil.cs.meta │ │ ├── JsonListUtility.cs │ │ ├── JsonListUtility.cs.meta │ │ ├── TimeUtil.cs │ │ ├── TimeUtil.cs.meta │ │ ├── TimingLogger.cs │ │ ├── TimingLogger.cs.meta │ │ ├── TouchSwipeUtil.cs │ │ ├── TouchSwipeUtil.cs.meta │ │ ├── UnityDateTime.cs │ │ ├── UnityDateTime.cs.meta │ │ ├── WaitForUtil.cs │ │ └── WaitForUtil.cs.meta ├── Lost.WeakReference.meta ├── Lost.WeakReference │ ├── Editor.meta │ ├── Editor │ │ ├── WeakReferencePropertyDrawer.cs │ │ └── WeakReferencePropertyDrawer.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── GuidComponent.cs │ │ ├── GuidComponent.cs.meta │ │ ├── GuidManager.cs │ │ ├── GuidManager.cs.meta │ │ ├── Types.meta │ │ ├── Types │ │ ├── TransformReference.cs │ │ └── TransformReference.cs.meta │ │ ├── WeakReference.cs │ │ ├── WeakReference.cs.meta │ │ ├── WeakReferenceT.cs │ │ └── WeakReferenceT.cs.meta ├── Lost.XR.meta ├── Lost.XR │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Interactables.meta │ │ ├── Interactables │ │ ├── CircleInteractable.cs │ │ ├── CircleInteractable.cs.meta │ │ ├── DoubleTapInteractable.cs │ │ ├── DoubleTapInteractable.cs.meta │ │ ├── Interactable.cs │ │ ├── Interactable.cs.meta │ │ ├── InteractablesManager.cs │ │ ├── InteractablesManager.cs.meta │ │ ├── TapInteractable.cs │ │ └── TapInteractable.cs.meta │ │ ├── LightEstimation.cs │ │ └── LightEstimation.cs.meta ├── TODO.txt └── TODO.txt.meta ├── README.md └── TODO.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=lf 3 | -------------------------------------------------------------------------------- /Lost/Dependencies.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b30fc731b6385034aa7a453011550700 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e36dc88ad943968eccc7d41bd5b65a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55991bf40268c4b47a0eb350be701b99 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Documentation/Azure Setup.md: -------------------------------------------------------------------------------- 1 |  2 | # Setting Up Azure Blob Service For AssetBundles 3 | 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Documentation/Azure Setup.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8efaa8c2d6814a04dbc05d3fd50b02d3 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Documentation/S3 Setup.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82adfab23f0d7e145867e4805c47f306 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Documentation/com.lostsignal.addressables.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c675327eafc76b41bb26a13d4552e5d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 476262ca172a4b85b5ecc3910df2751a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/AppConfigs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6190dd817653d14eb9a9a5947faff4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/FileUpload.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f93678f748642f5b84af146a8b4591d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/FileUpload/AzureStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fb8a268259d0234c8adfb9f0b6dc5ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/FileUpload/Ftp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a889514d974a9474d91f8361e3c59224 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/FileUpload/S3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdee555bdd7782941a4ca46714b2dd01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3521477e7ce0c1c4bb5add6cd9567b3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da160a674401c6846be40b50ec9be962 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 965aff2361d013f4192ee691ddf1e529 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/ExtensionMethods.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 900bf3a3808673a46b252c510340877b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c86f70e23e4bec4d94aea22c8292ac3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset/ILazyAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb52dfe58a838d43b2e64d000d9f611 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset/ILazyScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc551cc9cf10ace41bb29c2901bc20b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset/LazyAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ead50a936c5e8f64c955fe29dfc15f3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset/LazyAssetT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74958be21c525784c9eed7460483980d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Addressables/Runtime/LazyAsset/LazyAssetTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1057aa7d8888b947a525ce0e3806b86 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Ads.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eec440881b44610b108c970c0d5c645 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 809b7329a3366ca4d978a592adc28f89 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Editor/LostAdsSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96396e7cda899ac4aa1f3c497b85d041 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c5d016ef0aa0bd43a890b1290be22f4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b4749ab7094da899222eb3396a3749 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Runtime/AdsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee48dba59534a94478a0192a920de197 3 | timeCreated: 1428137594 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Runtime/IAdProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b37e393f8f953c45bd7937d3e02e81b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Runtime/LostAdsSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34b6e15a2adeac34da2631b3154abfed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Ads/Runtime/UnityAdsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b1c1bd625ce6694bb353436e7341b28 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf6c0e898366413a9a43d53a6becfe99 3 | folderAsset: yes 4 | timeCreated: 1486762243 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52063ad5fbbf55f4aac22a1fb9ac4787 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Editor/LostAnalyticsSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ff8611d083891640909b12adde07561 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76e76eababe7630418ed19753fabba7d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 794cc518ccf107e4cab351ac569817b7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Runtime/AnalyticsEnums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5ccb1260dedd62489cb9ee4f209e219 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Runtime/AnalyticsEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd2e3fde819f644591e1ff678faacfc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Analytics/Runtime/LostAnalyticsSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acbea162362770a42a704ccf7a8af2ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75befe31d8324548aba4faa1a19bf6df 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a89df94d45f64611b1e15e9296543b63 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2af8d4455264f76877bde0128061064 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig/AppConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357ed9db7f2cc7640a6281e568b3f28d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig/AppConfigCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cdcd290d5523d5459de3d23b079f6cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig/AppConfigSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75dcac27d968e284bbf277b07152f421 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig/BuildTargetGroupUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54a85698687ef34eb00f87a5957ed7a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/AppConfig/EditorAppConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea54fe562c3d51f4291403de671dcfed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bce22fb108245498f7228ecb5dcde5d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/Extensions/ObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2515c9655de38d340a5fe05d7bcbe0d8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb397739cfc14e1e939e7f1709adb2e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Editor/Utilities/TypeUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39f58fe42432432419bce18d9fb93a96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 823ce54004cfbce40be092f2df800914 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f3a324a04e944e28dbd17e9f6451fa0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98cb8529b5974e3aae25275ad5045f0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/AppConfig/DevicePlatform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d90ba69b7f32723408ebf81716363d3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/AppConfig/RuntimeAppConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01d87b2ec57cb5747bc296b03581fa85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/CloudBuild.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77303b4581074ac0b38d01318ccbe1f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/CloudBuild/CloudBuildManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9a23a7da25cfed47ae9982b0351c989 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppConfig/Runtime/CloudBuild/MiniJSON.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d74573eb3dde584986aa8050c69e3b4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppInitialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ffc6f96f1da8c946b23bdda7e319a23 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppInitialization/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43f74de19c9c83a44a71d64e4a231062 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.AppInitialization/Runtime/AppStarter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 726ad4bc77ac44a4a91cedaff638b29c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppInitialization/Runtime/IAPCatalog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96e9da00be531db49ba651f3fcc1fe66 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.AppInitialization/Runtime/LazyLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaada32d101a24d459ff1cf2002f070c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abcb7ba6fa7c4cccb603bcccecc11e9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa9ef1563e8498da9f3258cc284a233 3 | folderAsset: yes 4 | timeCreated: 1489001202 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea606d3c16cd447f80f2aff25d910163 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/CameraShake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00e1bc3ddbd2fb749a5f9c2ad5e421fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/DelayDisableComponents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41a994bfa9966b248b534e4c202dcd5c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/DelayDisableGameObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ea9b5dfbd6d5b046810410eae7daf31 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Destroying.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9d5d605a54e46b789146d6db6f856d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Destroying/FallAndDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b433239d0cee55e47a5d393a126baff2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Destroying/WaitAndDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 009761021158c704484884a80b1b319b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Destroying/WaitFadeOutAndDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7182f8a3571fd4f4b8607d9b5e94c07f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/GroundMeshDecal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10e4b852fdd3c724da248e7a93484a89 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/RandomVelocityOnAwake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8137d42f2d56524b9c71a466a3e25a0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Rotate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9a153f3fe7f1cb4db705b811c4aee2d 3 | timeCreated: 1461443608 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Behaviours/Runtime/Statemachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 945efc0c3ebf9764aa185975a366639e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2864ee16f9f54926a23a1df72e0d89c4 3 | folderAsset: yes 4 | timeCreated: 1465365289 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ada9147ba504fd49f8bea2651f2c2c8 3 | folderAsset: yes 4 | timeCreated: 1465365295 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68bb7bb993cd4fbe8a1e020ba537715b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Runtime/ConcurrentList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a098714c2b947a5428e1277b52f04b74 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Runtime/ConcurrentQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 169ab49b2c54fdf42870b543d87c25ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Runtime/ConcurrentStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b11b6d8ab334aae41816e3662371b1c2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Collections/Runtime/IdBag.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01efc77e2c76c5e4c9790545c299d1ff 3 | timeCreated: 1443670646 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6139e1ba6ada4d948e56552e7e6fee98 3 | folderAsset: yes 4 | timeCreated: 1504853828 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Core/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f13a47bee7a24c1a953bae1ff6d1e525 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Core/Editor/AppConfigs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc3881dc3cbc4b399f61edaad9d6e14a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Core/Editor/AppConfigs/LostDefineSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d616ac06ef2cafa498b3059dc8ea0efb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Core/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8dab9f5358db3f409b7874e8ddc8aaf 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Core/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1bdbc4a0d3644f4844836b9678097fc 3 | folderAsset: yes 4 | timeCreated: 1484206313 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Core/Runtime/Platform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f42eaea8a17f6b47a20d8e069022d50 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Dictionary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42928e96e1b841eea0437c5a761be947 3 | folderAsset: yes 4 | timeCreated: 1465364825 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Dictionary/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 176d91cbe0224d10a1c89217b050328f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Dictionary/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e0788be3dfe44d7abd2ac4b0c0e0bc4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Dictionary/Runtime/DefaultDictionary.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09bf53d50e170ac4ea0f949dd001124a 3 | timeCreated: 1460140069 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d201248351c4faa4ba805c00b95b5cd6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c23a7b4b45b0b49a85cd75467341a4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd99fdd099b53a64d96c9951dbb64208 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/EditorGrid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8262e5dc0d199ed4bb57dde53840b370 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/EditorGridDefinition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17298de16e7899c42a9885683af94b29 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25f01d26bb57c6b42995136ec362f641 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Scopes/BeginGridScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af0c6fad781ca4c4098666ce6d1b3121 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Scopes/FoldoutScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fae8342f97190048839b4586a03ceff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Scopes/LabelWidthScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53bd6fea95b17fe48a39980354d8477c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eaf9427480973a4abbb533dd5f7ad28 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/EditorGrid/Tests/EditorGridTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a3a3bc636b38e943bb745e23670f237 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbcbefb5d329e6347b3d4e1b1e99d3a0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources/LostIcons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77bf403dd6a0d864e9c51164ecfe1358 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Add.png -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Delete.png -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Down.png -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.EditorGrid/Editor/Resources/LostIcons/Up.png -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9fdb00232e32b644845b032463bfca4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Utilities/ButtonUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60b8972a2450d5b4783659ef13f90695 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/Editor/Utilities/ColorUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 424a0e455b7bf014ca49eab69111eb70 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/README.md: -------------------------------------------------------------------------------- 1 | # Lost.EditorGrid Package 2 | 3 | ### Description 4 | ---------------- 5 | This package contains a useful EditorGrid functionality. 6 | 7 | ### To Do 8 | ---------- 9 | * Remove BeginVerticalScope eventually 10 | 11 | ### Dependencies 12 | ----------------- 13 | No Dependencies 14 | -------------------------------------------------------------------------------- /Lost/Lost.EditorGrid/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c541d69b05464e4aa824c5d3c525e7c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d45779b5d784ae8a214d1babc3b1fb7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2955df7db7d24d43b1fce240b79ca211 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AnimatorTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e237b5b8f16e4f2ab0d5521486240799 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74d4b89ea8d642c38254e24c2fd7b143 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fa2ee8a3ff74184b608c1d5fde16def 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/AndroidX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad5f7d673871453498b37be0d7511828 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f8c25d1b0c14005ae89a42dc369a8b3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/App/GeneralAppSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6059742ac4ae38b41a70f952b87a05be 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/App/SceneListSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1160a2ea046e2241a48274d0ba60f61 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/CloudBuild.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e96659fe4324b34905889434e13618a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/HokeyApp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44bc40fcee604f4bb097c02234b233f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/Ios.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0918155be6a4b9ebcaff3064f239bd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/Ios/IosSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a56f77efb44c39849ac5a6994a222622 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/Ios/IosXCodeSetting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b69c2414bae14e84bb5be72d59fee28a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/OverrideTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50618ef8ab044a91b46d1a9facba4ac4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/AppConfig/Perforce.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c4122525dbf45cb9cdac8dbe89fbb2d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/BuildValidator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4869b1a9fbf3d2c46bec082e5e3a805e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ContextMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f4c841e53e647c094ecfef8cbfc84b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ContextMenu/ApplyMeshCollidersHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1488292ce1b9ab54a93e0d83d2524a1a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ContextMenu/ContextMenuTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2611302588560542a4c07856220c5b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ContextMenu/PrintGlobalPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92b6ca65a2f711e41a02d2b5aa34fc32 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ContextMenu/RectTransformContextMenus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea62c16b9916c614a9bf79cb9a9433c5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/EditorUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d48a18f6c1c1a4e87074182e4b0f2d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/Editorconfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326c46644c3812d45951fc98afc5ddfa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/FileUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2afd093110bddd64f85fa30a27519a1e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/FolderFinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 606bc3fca47759945a469d4100b3a4cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/FolderFinder/FolderFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db41953953a8cef42a9ec146ad529604 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/Lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eaae40839ed4f8fa7bc6fca09a304ea 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/MenuItemTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3e59c9daf8575498ba336c9a063e8a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/PresetImportPerFolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 083e2cc6ec5c40f40a7974d7a8a82c89 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/PropertyAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42c633925868fbc4486df95ce602806b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ReferenceFinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98acee334f30d5f489f393a627618b6c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Editor/ReferenceFinder/ReferenceFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa56f5606448efe44a4e4b3b7cad42e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84215b4f70874fba9a2eaf3f3e039489 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 055368f6b37842aaa3a55ec32c7d0dd2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewEditorTest.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c31e8a34fb6708144809d22dffdc73f6 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewMonoBehaviour.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ec2f7fdcef1e6f45b2c1a7510be3eaa 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewPlayableAsset.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4d5fd6d65c83d24da92fbd00d7f5499 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewPlayableBehaviour.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ccc7dcc8373b7f4197de5cd7d7e7a16 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewStateMachineBehaviourScript.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fed9948eb87d1be48ae323bd48cf729f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/TemplateFiles/NewSubStateMachineBehaviourScript.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09afd0c31b0565e4a8a74ecb68ceef24 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/editorconfig.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6c774b1ff43524428c88bc6afaca2d7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/gitignore.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae63426d3cf11c4cb39244488e2ec17 3 | timeCreated: 1460320282 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Files/p4ignore.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6c8d3e6aeaff34d89c7f2be0a80a0d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55bb8cc437f3c644c8930b043f0b6343 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb02454db44b9ca408c244412291ee5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Runtime/BuildValidator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1bc444fb35a9d49aeee3f44432bc6b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Runtime/BuildValidator/IValidate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a7e55ebb79276844b37495743a664ed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.EditorTools/Runtime/PropertyAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822d80306331e5b428ec94b7eb086335 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5b06c595928477bb288bcdaf38f92e6 3 | folderAsset: yes 4 | timeCreated: 1465364878 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a443765a897a44ac99fc193c39223f59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/BoolEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d28885fdc146a0e48be7bf434be6eda5 3 | timeCreated: 1458012313 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/DoubleEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c4ce62bd47dae943bfe1d418dfb348c 3 | timeCreated: 1458012312 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/FloatEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bbbb2da145cc1144bf99832560f843c 3 | timeCreated: 1458012313 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/IntEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e974578998dd734cbfdd3bd120fce4e 3 | timeCreated: 1458012315 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/StringEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f41834346d379a54dbc9314a02ff9201 3 | timeCreated: 1458012314 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Events/Runtime/VoidEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d25947dfaeb5dfd42a7217c40ecae6c4 3 | timeCreated: 1434085220 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe593191401c4a1d88bdcb8ced096b49 3 | folderAsset: yes 4 | timeCreated: 1453978533 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/CalledByUnityEvent.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7bbdfb55e8943f9a4609c24d6ce82c6 3 | folderAsset: yes 4 | timeCreated: 1511923053 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/CalledByUnityEvent/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9841e6dcbf8295642ac05c807bd36c79 3 | timeCreated: 1511923220 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ae83fc32c5a44589629f50f3c849890 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Editor/PostProcessors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76fd7ddd76014367bbadc588fdeaff32 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Editor/PostProcessors/SpritePostProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f0fe41d71585a84b9cfb6f09272afd3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/JsonServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b79b1aa9d87f4fa09c91db657eda68f9 3 | folderAsset: yes 4 | timeCreated: 1465364643 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/JsonServices/JsonServiceClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af0adfcea2d7e384b9c80906fa8d520f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51a2a36fce454362b1b42743db46505a 3 | folderAsset: yes 4 | timeCreated: 1465364352 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Localization/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c77085a2fd604943ad8ebe6684b7e25a 3 | folderAsset: yes 4 | timeCreated: 1465364388 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Localization/LocLanguage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30458f148d03749468b39b54e03ecc81 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Localization/LocText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3673d3fa79cf0c64c945d546da267169 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/PrefabPlacer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074b29c8fa0181d44a3ea566f5633fbd 3 | timeCreated: 1465365924 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/PrefabPlacer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 366dbc7c967e4622a7fad8d687826de2 3 | folderAsset: yes 4 | timeCreated: 1468907807 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2c95d5ba106b5c47aa86e8be140c986 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Segment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 720b367383ef4da6b9c23f9cb441d105 3 | folderAsset: yes 4 | timeCreated: 1468907807 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Serialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 201a5da8a1d645829346dfd6f4a12184 3 | folderAsset: yes 4 | timeCreated: 1465364525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Serialization/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e401a9d17f14faf957a861434734a4d 3 | folderAsset: yes 4 | timeCreated: 1465364533 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Serialization/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c4315e2bb5e48a58334b851ef972453 3 | folderAsset: yes 4 | timeCreated: 1465364540 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca417e1b3400483783ecf9882d9843e2 3 | folderAsset: yes 4 | timeCreated: 1465364755 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Settings/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91dd4e89386f4944ab42ce5f2ac1b9c1 3 | folderAsset: yes 4 | timeCreated: 1465364762 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Settings/Editor/SettingsTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d9da387835213b4aba4dadfe1c89c19 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Settings/Setting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e75b2e2b0a57904a858efc298667f78 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Experimental/Settings/Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22a0f1d469b3440478825e55db442d4d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35139acbea52427582095f5f0e927a8b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a3210196eed3374794e887650474076 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Editor/SerializedPropertyExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9045bf5d2b3b9947a97876d80973896 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 398b4951f1df4695909bd82c6d32d791 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/ByteArrayExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19cc9ca96adad13489d5410b013d2d56 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/CanvasGroupExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8fe9b5cd138d484caeddcbba0ee913f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/CharExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f8f18063005cba4880c31dbcc3b6b23 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/ColorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 494781d254ebb444fbef3e288ba4260a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/DateTimeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38ecd3ee639e8cc49a2064726d90d459 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/DictionaryExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d34772160afeeaa4c851c30bdd142c5b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da33dbaf50e1ecd40a52cbf9b1fbf504 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/ICollectionExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16c732046fe00d94ca04ef12493a23b7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/IEumerableExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f5e2e42c477d4d4bab1fb4e054a3f36 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/Matrix4x4Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 902385abd9bb9f740967128bc4864523 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/MonoBehaviourExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2ff4b915a353d849816018ad39f9771 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/NumericExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ff45d53b572bc43b9416c816e7bfef 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/RandomExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 828d5ff118859774aa0d1f82aa063941 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/RectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a16b23642f8c2a240b2d2b078963bd35 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/RectTransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 117b9bf6a0872c7409705c2e47fcdcd1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26379830d7bf6a845a258d17f62ea4ed 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/UnityEventExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12e5ee35e9109c64abbde0ce857d8df1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/Vector2Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01dfb1eddba026a408f716ffbf02fd34 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Extensions/Runtime/Vector3Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ca828b6771da7f4298d125e474e0eb9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.IAP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 557503484c564230a46247d10837a493 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d4618e6154a4f85a23088c434db2520 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/Editor/AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04a12631a2474301a331675ee31735a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/Editor/AppConfig/CloudMoolahSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6bcb222a12b8a24ca91ba54e04e0666 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/README.md: -------------------------------------------------------------------------------- 1 | # Lost.IAP Package 2 | 3 | ### Description 4 | ---------------- 5 | This package contains an IAP Manager that wraps Unity's IAP system. 6 | 7 | ### To Do 8 | ---------- 9 | * Put all files in the Lost.IAP namespace 10 | 11 | ### Dependencies 12 | ----------------- 13 | Lost.AppConfig 14 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edd494a38e473e144b29e29caab4b62d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b7c914135e4f1793674ca4ef42d21a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.IAP/Runtime/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a48071806fb84a87a8422d7c26ad0816 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 313770ebbfeb479298e8a873f1848d5e 3 | folderAsset: yes 4 | timeCreated: 1465364708 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c3c08a198cc44deb99a559f54ef147b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/Input.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04f54d8002f0a08428dbde192d4d210f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/InputHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ce8abfe2648591479ba2cb4e29fca22 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/InputManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d862e6b5489a7da48ba7c8a2385e469e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8acfc5e786834c11a1a2cc07e377a23a 3 | folderAsset: yes 4 | timeCreated: 1465364713 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/Keyboard/KeyboardButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e7b528fdc358c1459f8c4d5207b708c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/Keyboard/KeyboardManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0469e965eaa8242bfc49b2d5150240 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Input/Runtime/Trigger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edb56ee8e65e4e68b922f4b83dd66d83 3 | folderAsset: yes 4 | timeCreated: 1466357550 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dc28bb022834db6a92cfc3a9889821c 3 | folderAsset: yes 4 | timeCreated: 1465364676 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b838def1a768413aae292380e303b433 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Editor/PlantDefinitionEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 315f54d002e21d64ca0218b1f84bd9a9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Editor/PlantGeneratorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acc67febb51d14074ac4f5f9ea6edbe8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0267868641a94e9ca27a3edd4c82750b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime/PlantDefinition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61eed5a71304304eb6ce13a20b97a4d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime/PlantGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4e88146b98a74903a5a8f902cf55f20 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime/PlantGeneratorBranch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 681619146d5d6497d8f0168e1566367b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime/RandomUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcd4f67443b13f44786cab59a972a816 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.InteractivePlants/Runtime/SuitableRotationSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28bbb314cb68a3d45ba5abc2009ba7e9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 579421d20d56484595d9e2dcbc84914f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8bc48b86504448a516948acb60adbc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Editor/LocalizationMenuItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b38a5e6ef9b6b64d807752d67a67c42 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7265492c135dad64da86b0e6d7b18a8e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ee110d99aed4955b2ae4cf4e12dd5f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/Language.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4575ff02415a51d41a05a6350f8bbf9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/Languages.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3423db3af910f24e95fcc15d156fb9c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/Localization.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e67310d0144c7346b7e8ecb3cf27376 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca672cad1a1a16f4b831fb810b75599a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/UI/ChangeLanguageButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad922b1fc99da9b4985039b91dcc54b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Localization/Runtime/UI/ChangeLanguageToggle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60cd22ffa423cfc47932d523a3e0fee2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Logging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ba540a933a4cd3a0abd062340a8ed8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49a00c8d5fb128b4a8a20a995a773d3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Editor/LostLoggingSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3553ec9292afade40a32ee6790cce6ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/README.md: -------------------------------------------------------------------------------- 1 | # Lost.Logging Package 2 | 3 | ### Description 4 | ---------------- 5 | This package contains a Logging Manager system for the Lost Library. 6 | 7 | ### To Do 8 | ---------- 9 | * Put all files in the Lost.Logging namespace 10 | 11 | ### Dependencies 12 | ----------------- 13 | ??? 14 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaebe2dc87d32454b9f71aa9d10d7c99 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdde9102411e4bfc9f103e84be72a0a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Runtime/ILoggingProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9433b0631c7b3146b867e632f549637 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Runtime/LoggingManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df2fd9c22256f5e4cb4a5ce92efb185f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Logging/Runtime/LostLoggingSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ce27608b07b52047a1bbfc1fe5fea49 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d9040bade94bbfbad9b8ba00e53add 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68f22d682cd5e140b79530592fc7777 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Editor/NetworkIdentityEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b4f679ee4436b4184f0c1d7015acea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0a2eb03c0565f48b62e023e8cc531f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c97c600ca4274f0db8c28eed2f094009 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/GameClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4864618338f0d794ba0fbd876cd8a8a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/GameServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f531d73edfb9f34487923d1ea90fc0a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/IClientTransport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bfbf29129d8da842a098da2f0722f48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/IServerTransport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5600de679a8ac7643bff2cb27185e590 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/MessageCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 390d39394102c464b85469733d8198d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Messages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3794a8f6d334ce3ae03cc2cd6c726e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Messages/ClientToServer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 035320a3ed8a44898d4b6f103a533976 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Messages/Message.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe9eb205e1c7e6f42890497eb723cfb9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Messages/ServerToClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9533ee5b990849c8a08352c6d9785756 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Messages/UserInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdb3d686d2ff99d4f90c82c8b6eb89da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/NetBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25664042aa050164489a94300577bfff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/NetworkReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd806ecd66127349b0833fb3c22ae25 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/NetworkWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 823162c17eaca3b499659de783e98f73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Transports.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5b5f438fbcce6644941db787ee802fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ba17702e6d86b4ab5d421f44e02c0d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 108e5d2919640534a971f8a3aff76fed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/Behaviours/NetworkIdentity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d41934a5167c8324b9ca9b5a11ff96d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/Messages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1c55f2d3011e544eaff7084610ec7c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/NetworkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5a303fc09f032d4cb8e90060703a696 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/NetworkUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f636487b2f0eca4e89ed861f43df803 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/UnityGameClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc84620e0e6131c4f831fb659af0c37d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/Unity/UnityGameServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bcd4846114462e4a984f6db6c7f1784 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/UnityEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3d9a0b7f2e78d446b59c0d35a929150 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Networking/Runtime/UnityEngine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e884b6b49847a0f4c98e2c83643920e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39696a554ba64e7893af1a9b73443cc8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42113634227e4eebafc09f91d4784b36 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/AppConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70b74c2d5d2742f0ac83bfb1cd6db8f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/AppConfig/PlayFabSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0961adc1a58f0e04b91679f041642563 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/AppVersions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4736f88fcd9c9164593646be35b6e7fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/IAPCatalogExporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f65133302e13ef84aba03ee6f720f79c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/PlayFabEditorAdmin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3db2f6bddae7b7349aee3e74dadfb142 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/PlayFabServerSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Editor/PlayFabServerSDK.dll -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/PlayFabSettingsHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0afea2c22566c54a934823db7eecf43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/TitleDataEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c28ce62296d6a9c4285f66e979afd192 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Editor/TitleDataEditor/TitleDataEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 360f89afb7649864db28d24f3aadeb8e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d5086251cf794d4f8ddb3ac86868b6f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e47cef4f355477983c833e6f59ddb52 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Analytics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ae7dd9e192e4507a0599cc3b06e763c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d006c10169e6c546a75b257c2bc6ca1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions/AppVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc03adfbb0ea439468ab19a797c45bcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions/AppVersionRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a19d3d3796ad3540b78559777fa64f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions/AppVersionResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 558d0a784e0e2a6438d10bf1b07c7b3d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions/AppVersionsData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f59b834e9538d54b9e0220c44cff5a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/AppVersions/AppVersionsTitleData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caf8939d74dbac140aa4f33dccf98bdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/ChangeDisplayNameButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d43c0c775ed3ff94a998ed5efba4721f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f78153ecdbde94baf01dab4de28ce3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d27fe724ac8a846b987dcee53dd3d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/Login.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6843969ef333af943ac93e912dcc1da1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/Login/Login.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2cb6b57600323c47ac711fbf2c20711 3 | timeCreated: 1488834429 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/Login/Login.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc02eb34fd49a8d4bb86f8d7a33df0d7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/SignUp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efdc6e4cc2f72d48a07df4e8076deae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/SignUp/SignUp.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1db6c1a30f8dfdc46a60a2eb67b35f44 3 | timeCreated: 1488834429 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Dialogs/SignUp/SignUp.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9a81f2530e4dc145a61537ab3265971 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/SpriteAtlases.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e88a0508aca0a7e4591f583410a2cd34 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/SpriteAtlases/LoginSprites.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdf6204b8980bd740a7819618d4391fa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7fa2443c9168d34ebfa88a99adabc72 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Box-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Box-Small.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Checked-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Checked-Icon.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Lock-Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Lock-Icon-Small.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Mail-Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Mail-Icon-Small.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Popup-Close-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Popup-Close-Icon.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/Rectangle-Basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/Rectangle-Basic.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/User-Plus-Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/User-Plus-Icon-Small.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/White-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/White-Button.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Content/Sprites/White-Popup-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.PlayFab/Runtime/Content/Sprites/White-Popup-Background.png -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: becb988a8d364387815e4ee48e207792 3 | folderAsset: yes 4 | timeCreated: 1514606632 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf20fe5808d4098bb265be5f3dedaae 3 | folderAsset: yes 4 | timeCreated: 1514606751 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Common/Inbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66b37317616d4a9eb9c549080696c381 3 | folderAsset: yes 4 | timeCreated: 1514606643 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Common/Logging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a8f8bd79efd4f1f92b53fc455055b38 3 | folderAsset: yes 4 | timeCreated: 1514606901 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Common/Rating.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc19ec617d674568b608c6aabde2c863 3 | folderAsset: yes 4 | timeCreated: 1514606953 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Common/Status.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f57d66bebf294ce3ad37e2c68faaeb5b 3 | folderAsset: yes 4 | timeCreated: 1514606616 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/CustomServer/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2b57d1b6724e3e80f488716502a094 3 | folderAsset: yes 4 | timeCreated: 1514607916 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Dialogs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb1c3dd2d2e531c4e9bd7a7234520d08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Dialogs/LogInDialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e176a2f69437e964c8d5d55821803399 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Dialogs/SignUpDialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d187109aa5effc45a6dc0fa4cbadc03 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/LZString.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b38a380b4a2501c4e91809621b255dba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Networking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db9bdd71a6e4ccbabf837b405b56dd1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Networking/PlayFabGameClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3738c7544d487d1419513e06f0ac0633 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Networking/PlayFabGameServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22cc0b79b2ee82a4593eabfcdf4227c6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/Networking/PlayFabGameServerUnity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29cbc5010054d9b47aa033bbca6719cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0988ebdf07b415e9c8158d322926c4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/CatalogHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5442d34c8100f2744be8ff13a74538b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/CharacterHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cab1fd6dd5629084eb0535e15506826f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/CloudScriptHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66c03fc1eb31b8147b2bd784a8c3716b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/InventoryHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f581a5dab7f34204e97939f9151bd651 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/LoginHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daff2016a8b914c41bc5ff2000ba4031 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/PF.Do.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a13ab0c09d4b604a9c74c1770cc3805 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/PF.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d976a720ba4212045a06b03b510e4631 3 | timeCreated: 1470816009 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/PurchasingHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fb447c235c649a49a5d9f5f287bb6de 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/PushNotifications.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5761a36dd88abbf40b4e070750936516 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/TitleDataHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b34cab28e1f2940ba610bc8cc0caa2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/UserHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d3de94f52ed5c47b6cd751f4a142af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PF/VirtualCurrencyHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83870ea64dbcd5146bf3a7d3f7d75f11 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PlayFabConfigExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4277deb0685aefd4a9a253d6a5ac777d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PlayFabLeaderboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63075cd411ac7824e993567029ecbea2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/PlayFabServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de947b1b0713f4d4fa69092276ff1879 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/TitleData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43a1feb752e65b340abc2e303d805296 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/TitleData/TitleData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36ea9b4f0b8395d4ca62bef141f1a698 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.PlayFab/Runtime/TitleData/VersionedTitleData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecccf7a12168514409e4c9b4ee0cb3b8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e41097de6b14b53999008fabd59fae0 3 | folderAsset: yes 4 | timeCreated: 1465364500 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caa87aeb8a6846848897ba0482dc6a71 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling/Runtime/IPoolable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b79b6f324ef79084e8b41f71bf82e8ab 3 | timeCreated: 1484207914 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling/Runtime/Pool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9943aee34f8f449a5430c19db58190 3 | timeCreated: 1484548328 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling/Runtime/PooledObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2383335aa2ecfea4f87d30bc253fa67d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Pooling/Runtime/Pooler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af48e395d6a4da44cb85d16fbee10ded 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad806818bed417540b65559d5f68310a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0523561b16ad6154a9acc9ec80372ff1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Editor/RealtimeMessagingSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9549c1562637a243bae7b5a2c95669b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e809ce17bc9369c4eb3d538845c103bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a907e4485c9beeb459071c0eccd98121 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa5c3599578efa64f800589b7e805c8c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.NETStandard20.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b820eeebe4d50c4ca60867ad73e1078 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cf0349dc7668244a85bb797b8d2ad50 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/CustomSerialisers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbc417b475ee2b9488e14a079a406e01 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Encryption.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94c85e4e3f797294abe1fa84ee062aba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fcb25704668a4249a5c5963e49de13d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Http.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc1e831921230874aa1407176909c814 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/IAblyHttpClient.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace IO.Ably 4 | { 5 | internal interface IAblyHttpClient 6 | { 7 | Task Execute(AblyRequest request); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/IChannelCipher.cs: -------------------------------------------------------------------------------- 1 | namespace IO.Ably 2 | { 3 | public interface IChannelCipher 4 | { 5 | string Algorithm { get; } 6 | 7 | byte[] Encrypt(byte[] input); 8 | 9 | byte[] Decrypt(byte[] input); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/IO.Ably.Shared.projitems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15c0bc506e93d09478a62bdb6fc6c355 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/IO.Ably.Shared.shproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 309d407968898ef479dadb8aeec2bcf9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/IPlatform.cs: -------------------------------------------------------------------------------- 1 | using IO.Ably.Transport; 2 | 3 | namespace IO.Ably 4 | { 5 | internal interface IPlatform 6 | { 7 | string PlatformId { get; } 8 | 9 | ITransportFactory TransportFactory { get; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/MessageEncoders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5fbfe9ddf20e394090b191d9ab8cc60 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Protocol.cs: -------------------------------------------------------------------------------- 1 | namespace IO.Ably 2 | { 3 | public enum Protocol 4 | { 5 | #if MSGPACK 6 | MsgPack = 0, 7 | #endif 8 | Json = 1 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/QueryDirection.cs: -------------------------------------------------------------------------------- 1 | namespace IO.Ably 2 | { 3 | public enum QueryDirection 4 | { 5 | Forwards, 6 | Backwards 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Realtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf57484da42a15c40be03f420acfb778 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Realtime/ChannelProperties.cs: -------------------------------------------------------------------------------- 1 | namespace IO.Ably.Realtime 2 | { 3 | public class ChannelProperties 4 | { 5 | public string AttachSerial { get; internal set; } = null; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Rest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 321ea5c39a9d81c459c746b57cb69b5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/TokenResponse.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | 3 | namespace IO.Ably 4 | { 5 | internal class TokenResponse 6 | { 7 | [JsonProperty("access_token")] 8 | public TokenDetails AccessToken { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Transport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22fcf3512f22b944099939daa7de008f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Transport/States.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e577cb69db2c2e9459b5911084244b86 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Transport/States/Connection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e62edceb500d94b4082b9b05552e0b6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b427ca25a67c26c4ebf8003133b47393 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Plugins/ably-dotnet-1.1.14/src/IO.Ably.Shared/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a4da88e8c737da48ad1185c74b9f631 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b6083ae21fdbff41b03c7648118accb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Runtime/RealtimeMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7a2cbf49c8f0ad43af1c7f7ee55faca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RealtimeMessaging/Runtime/RealtimeMessageManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fda34e3e7e90644096ad9091d4a6c4b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d1ac85d9aab87b409af47a54a9272a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24167330912ad634e957b32baff9873c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Editor/DebugMenuSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b0cb2c3cea0d64bb90f1ff05805e84 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Editor/LimitScreenSizeSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91198b9ebcb372640987e420f3867f0c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Editor/TiinooSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 637c42c6dda8f284e927d95ccff66e09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbe6afa754bd09b4bbe0ee906b6a9075 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Runtime/DebugMenuSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e026983bdc28bb44b9c59027e8cf776 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Runtime/LimitScreenSizeSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00372a24ccf30b9469e2a28f5df7abaa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.RuntimeTools/Runtime/TiinooSettingsRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55bafb2a3a428094d9b7eaa256fbb4ff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4951f20b65ecd244896550e5c5cfec48 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b724554009d24d4ab3278ecd7718a7f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.Serialization/Plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c39fe8614c6d3fe4ea154dce9a981b4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Runtime/ColorConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdbd48ca103eb8242928d1ba9f978a2f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Runtime/JsonUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf2e34c9d2c384e4ebec5e416f975d3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Serialization/Runtime/VectorConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad5cad5dc4afa3a478c7f27b11db4933 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4b1d4462e51482782d1e8f8274a04f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b95608743a441ad8ba1e420063923db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/ObjectTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 045e7d218ba29ca43872e63d9c811331 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/Singleton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b41b7711c5243b88604ad5a6e9b5756 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/Singleton/SingletonGameObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c23e9060c73e074d8d1c3ac86f4e5c2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/Singleton/SingletonResource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 395ef2c335503cf43ac62b7c70e33dc1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/Singleton/SingletonScriptableObjectResource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aaaa5deab3705949837a750ff678341 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Singleton/Runtime/Singleton/SingletonUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b63ca97f04b7d954b990e400f41e841f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Spline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8470d4092a1e4649b5e9e50182bdba87 3 | folderAsset: yes 4 | timeCreated: 1470809351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Spline/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b2d6470ec14922bb106fb4127cb7a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Spline/Editor/SplineEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd60311460088194ab4ca963e37abd10 3 | timeCreated: 1470809374 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.Spline/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b262c393ed44c69776e3048dffbf10 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Spline/Runtime/Spline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc2d9deba7c34ca4092e872d3583e2be 3 | timeCreated: 1470809374 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.SpriteManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0ef78645abf02f41b73700b6a4605d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.SpriteManager/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e7e2b141d36d649b0d98d7dd38d837 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.SpriteManager/Editor/SpriteAtlasLoaderEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7cf4084a91a0e84aa80d5b967e1049a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.SpriteManager/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44fc613cb0ca4fb4bb6605e3a6d3a571 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.SpriteManager/Runtime/SpriteAtlasLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb6fded3b0bd77f43beb563223901e3b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.Storage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b74d001af1647428ad3bb1c923b9cf3 3 | folderAsset: yes 4 | timeCreated: 1502333389 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Storage/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87ebe338f0184d159ebb63abf7b1b684 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Storage/Runtime/Obfuscator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b735abd81510cb4498475885030675c 3 | timeCreated: 1502333332 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16c2e7d0be124eca9276399d031c0d60 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b80d66732ea84c8e8c9d9e0b3ce75869 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Behaviours/ToggleHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc3474ba05d3c1c44b7c08d73a2d6dd1 3 | timeCreated: 1508212724 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Buttons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 959051a715ae4b3797be7dd902277e94 3 | folderAsset: yes 4 | timeCreated: 1426904687 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Buttons/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0a0c464076f499bb99d52bf3a86d512 3 | folderAsset: yes 4 | timeCreated: 1482561981 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Buttons/LostButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d2e3f2967cbd94390213d712c353d8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Buttons/NoSubmitButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d36098d34ed824eb955d92fec6cd06 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Buttons/StateExposedButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce67bc71338444d4090972946fd3a230 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 305714efea8d43acb5a35c7d3aa5c505 3 | folderAsset: yes 4 | timeCreated: 1484290768 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6c621d83932481fb66684ea18c724d8 3 | folderAsset: yes 4 | timeCreated: 1484290786 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Animations/Fade.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4d4c85d5970d004c9fa03b8cd7d5a20 3 | timeCreated: 1488834429 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Animations/ScallInPopup.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d81ebb0f99ad9974d846e0d8875ea054 3 | timeCreated: 1488834429 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Animations/Toggle.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d339ada76ee0b34abe4825441211638 3 | timeCreated: 1488834429 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04a05559836f49858198404069268549 3 | folderAsset: yes 4 | timeCreated: 1484362625 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Fonts/OpenSans-Regular SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ac77071158ad604b8833e5d92c7e95d 3 | timeCreated: 1477174282 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostSignal/Lost-Library/974abe2f7af85a56b2890e6a09556eda0edb46fd/Lost/Lost.UI/Content/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83bf8587fb312554d9fa1e2642379833 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Content/Prefabs/DebugMenuItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57586116b25fc314296e4a3405e34c2b 3 | timeCreated: 1477171744 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DebugMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daa3c2bd2a684e069bc6d2ea79b532e2 3 | folderAsset: yes 4 | timeCreated: 1477170352 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DebugMenu/DebugMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 284f3f70c8976c34fa40d4843fdd918c 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DebugMenu/DebugMenuItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf7ed3ae85de7e4ba401b645b2e2818 3 | timeCreated: 1477170405 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Dialog.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e581f492d34f56aeae22fb73927760 3 | folderAsset: yes 4 | timeCreated: 1474350216 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Dialog/Dialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e175b9ed64daa544abd970760d6e11cc 3 | timeCreated: 1474351044 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Dialog/DialogLogic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7505fd80e9fbdab4b851308d06e9b149 3 | timeCreated: 1474351044 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Dialog/DialogManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c20c333566b81be43b45b7428c194163 3 | timeCreated: 1482784526 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Dialog/DialogSetupHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 042f6eff03b7bac448725dfae5df83e2 3 | timeCreated: 1504994188 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7371b917add46d1920cff8b609345d7 3 | folderAsset: yes 4 | timeCreated: 1507684590 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/ConnectToServer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4bb92dbd5e39b40a5cc7a837d0351f 3 | timeCreated: 1507684599 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/DebugMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34aaa2cd4f8fe9a46bc75dc83bc96f8d 3 | timeCreated: 1477171751 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/MessageBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ded58df4e4c9b4458f968235e5ebda2 3 | timeCreated: 1507684602 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/PurchaseItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 500aa12305d961641a4f21d449363af2 3 | timeCreated: 1507684605 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/SpinnerBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efec526e7b6e2df48909a990b54cabfd 3 | timeCreated: 1507684607 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/DialogTemplates/StringInputBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b51b2d47405f707439456115f8724249 3 | timeCreated: 1507684602 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27378be8269f4bda8fdae48d8dd2d2af 3 | folderAsset: yes 4 | timeCreated: 1488756869 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Editor/ContextMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb5daa79070434c4988dce76f378ccdd 3 | timeCreated: 1488756743 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Editor/DialogEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3db15f6002b1964e87ff72aca3b73bc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.UI/HDCanvas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3979ee4290c363c41b5583e50fee19a6 3 | timeCreated: 1461447553 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/InputBlocker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b729454ba10846548bb4aaec2d0635e1 3 | timeCreated: 1461447553 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/MaskSlider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdfb9f63b4661dd42a993202bed6b648 3 | timeCreated: 1433829844 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/OpenURL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2705005a9e1f05448e2da1eb7a24dd4 3 | timeCreated: 1487749287 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4148ab1ff9094c11acf3d8af31106e1d 3 | folderAsset: yes 4 | timeCreated: 1480789501 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts/ConnectToServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61fa926325f78be4684e5f86d5980534 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts/MessageBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1627688c3951e3549b45b1ae8dd03b95 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts/PurchaseItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194129119d9a4d5469af8295e90d3ca2 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts/SpinnerBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2e425c0d1342f747b7b83b8ca40c9fc 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Prompts/StringInputBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2353d0b4a0684de4782f8041c1fa658c 3 | timeCreated: 1474783603 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e60fa8b353d8815428e02ffeb3b5222c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.UI/RectTransformSpinner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 971269676af64f34a927bb306077cec9 3 | timeCreated: 1480793205 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/ScrollView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f10efd99c174753a432f2f7a4f89691 3 | folderAsset: yes 4 | timeCreated: 1452220979 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/ScrollView/Padding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d58663e29c5f09c48b433f3aa813b8cf 3 | timeCreated: 1501920631 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Singleton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b34b333bb634b82a06d23a1479802af 3 | folderAsset: yes 4 | timeCreated: 1484207131 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Singleton/SingletonDialogResource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bec886312bdbcd748bbe53ff83beec0f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 510b432f0a024aa1b23860aa8c0a2fa3 3 | folderAsset: yes 4 | timeCreated: 1488182185 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Text/BetterStringBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4713f07c17687b4c95be85698ad4843 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Text/IntText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc46b6d4d37ed10499994806a206eb8d 3 | timeCreated: 1477887184 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Text/TimespanText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 104b149fc386fb440924ecc6d6f0c2f2 3 | timeCreated: 1477887184 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/TintGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c84be598ea15dcb4ba9d8f8928382bac 3 | timeCreated: 1497673664 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Toggle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5b3cb65685c49df99aa908b30aa8c8f 3 | folderAsset: yes 4 | timeCreated: 1487575227 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Toggle/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e942827b69745828aec975b1609aaaf 3 | folderAsset: yes 4 | timeCreated: 1482561981 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Toggle/LostToggle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba126b98eba17947b1fd1679c8d2af5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/UIActions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81784a614ebc4da5b310be2068306af9 3 | folderAsset: yes 4 | timeCreated: 1482561039 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/UIActions/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a680458184d4476b848057e6d10f68e9 3 | folderAsset: yes 4 | timeCreated: 1487576055 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UI/UIActions/UIAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 918ba088b9689124dbd403a988b69ef0 3 | timeCreated: 1482562372 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a57ba04683460f9e99e0904a710d95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UI/Util/UIUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 127455b2afe7f9b4591b4dc1b42dbbcb 3 | timeCreated: 1431760695 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Lost/Lost.UnityTasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8de661c7200d4567a7693fcda3219d90 3 | folderAsset: yes 4 | timeCreated: 1462247329 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.UnityTasks/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f09aa70c1c417ca1021b09e2a51c99 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.UnityTasks/Runtime/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3a4a4670bad4792ae2ae62fdcd75398 3 | folderAsset: yes 4 | timeCreated: 1462245716 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fddb3b38e644703a390c45a71cdf245 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153ff763188e4ea4ab44acf45042f335 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/CosUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3dea8cb253634bd4ebbae10b07a294f4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/Cylinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40d43d3192498264b95952589a74e874 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/GizmosUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a50fdd159bd9b74f844030d0c7cf4ea 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/IdGeneratorUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45aaa8b278515594e973d3a701e9ef67 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/TimeUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 201e9b0f168c27f4e855c216101b210e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/TimingLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ee91ba3717346a48a8e9c556c1d5b9c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.Utilities/Runtime/TouchSwipeUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d3f1ea5a34b353418dc5fd69e60ef27 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be36fbe63300d954d9e2caf941ba3ea2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea58cccf2e754a8418c746bd66d89ee2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0202a1acecaf6d4c8a7ab6874332cdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/GuidComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d24d8c9ab5baf41a8d1d7fbd60bc0e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/GuidManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5ab5126d62f22049836df4f8a0b1c4c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fde26d88cd0073f48a2fd8d96baf1d1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/Types/TransformReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0829ed3fe4a13aa43bdbf2980e20dd9e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/WeakReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8d52aac17bf14f4b81358954426580e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.WeakReference/Runtime/WeakReferenceT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6446fced63eb4de4d9f0b42e3481645e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/Lost.XR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28345f56f5bd434985db5be75a42c5dd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.XR/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3dd3989548d0de14f9efbdfc102b2244 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Lost/Lost.XR/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f63a140d13d472882e05447f9fed622 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Lost/Lost.XR/Runtime/Interactables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96646ba4e1934a319a26ce8ad739babd 3 | folderAsset: yes 4 | timeCreated: 1516078287 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Lost/Lost.XR/Runtime/LightEstimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dbe8d7b366a98d4691f687c59fb97c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Lost/TODO.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afeaa3b6a6db63f43ba2e05c53ae6df9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | --------------------------------------------------------------------------------