├── .gitignore ├── .idea └── .idea.GameFoundation.dir │ └── .idea │ ├── encodings.xml │ ├── indexLayout.xml │ ├── projectSettingsUpdater.xml │ └── vcs.xml ├── BuildScripts.meta ├── BuildScripts ├── Editor.meta ├── Editor │ ├── Build.cs │ ├── Build.cs.meta │ ├── BuildMenu.cs │ ├── BuildMenu.cs.meta │ ├── BuildScript.Editor.asmdef │ ├── BuildScript.Editor.asmdef.meta │ ├── BuildTools.cs │ ├── BuildTools.cs.meta │ ├── IOSPostProcessingBuildTool.cs │ └── IOSPostProcessingBuildTool.cs.meta ├── Runtime.meta └── Runtime │ ├── BuildScript.Runtime.asmdef │ ├── BuildScript.Runtime.asmdef.meta │ ├── GameVersion.cs │ └── GameVersion.cs.meta ├── Editor.meta ├── Editor ├── GDKManager.meta ├── GDKManager │ ├── BaseGameConfigEditor.cs │ ├── BaseGameConfigEditor.cs.meta │ ├── GDKManager.uss │ ├── GDKManager.uss.meta │ ├── GDKManager.uxml │ ├── GDKManager.uxml.meta │ ├── GDKManagerEditor.cs │ ├── GDKManagerEditor.cs.meta │ ├── GeneralConfigEditor.cs │ ├── GeneralConfigEditor.cs.meta │ ├── GeneralConfigEditor.uxml │ ├── GeneralConfigEditor.uxml.meta │ ├── UIToolkitExtension.cs │ └── UIToolkitExtension.cs.meta ├── GameFoundation.Editor.asmdef ├── GameFoundation.Editor.asmdef.meta ├── Misc.meta ├── Misc │ ├── EditorUtilities.cs │ ├── EditorUtilities.cs.meta │ ├── NonDrawingGraphicEditor.cs │ ├── NonDrawingGraphicEditor.cs.meta │ ├── SaveRenderTextureToFile.cs │ ├── SaveRenderTextureToFile.cs.meta │ ├── SceneToolBarExtend.cs │ ├── SceneToolBarExtend.cs.meta │ ├── ToolbarUtilities.cs │ └── ToolbarUtilities.cs.meta ├── Tools.meta └── Tools │ ├── ViewCreatorWizard.meta │ └── ViewCreatorWizard │ ├── ViewCreatorTemplates.cs │ ├── ViewCreatorTemplates.cs.meta │ ├── ViewCreatorWizard.cs │ ├── ViewCreatorWizard.cs.meta │ ├── ViewCreatorWizard.uss │ ├── ViewCreatorWizard.uss.meta │ ├── ViewCreatorWizard.uxml │ ├── ViewCreatorWizard.uxml.meta │ ├── icon_folder.png │ └── icon_folder.png.meta ├── Plugins.meta ├── Plugins ├── Com.TheFallenGames.meta ├── Com.TheFallenGames │ ├── OSA.meta │ └── OSA │ │ ├── Core.meta │ │ ├── Core │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── PluginPathTracker.asset │ │ │ ├── PluginPathTracker.asset.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Com.TheFallenGames.meta │ │ │ │ └── Com.TheFallenGames │ │ │ │ │ ├── OSA.meta │ │ │ │ │ └── OSA │ │ │ │ │ ├── Templates.meta │ │ │ │ │ └── Templates │ │ │ │ │ ├── ExampleItemPrefabs.meta │ │ │ │ │ ├── ExampleItemPrefabs │ │ │ │ │ ├── BasicGridAdapterItem.prefab │ │ │ │ │ ├── BasicGridAdapterItem.prefab.meta │ │ │ │ │ ├── BasicListAdapterItem.prefab │ │ │ │ │ └── BasicListAdapterItem.prefab.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── BasicGridAdapter.txt │ │ │ │ │ ├── BasicGridAdapter.txt.meta │ │ │ │ │ ├── BasicListAdapter.txt │ │ │ │ │ └── BasicListAdapter.txt.meta │ │ │ │ │ ├── ScriptsChunks.meta │ │ │ │ │ ├── ScriptsChunks │ │ │ │ │ ├── HeaderComment.txt │ │ │ │ │ └── HeaderComment.txt.meta │ │ │ │ │ ├── Scrollbars.meta │ │ │ │ │ └── Scrollbars │ │ │ │ │ ├── HorizontalScrollbar.prefab │ │ │ │ │ ├── HorizontalScrollbar.prefab.meta │ │ │ │ │ ├── VerticalScrollbar.prefab │ │ │ │ │ └── VerticalScrollbar.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── AdditionalComponents.meta │ │ │ │ ├── AdditionalComponents │ │ │ │ │ ├── OSAProactiveNavigatorCustomEditor.cs │ │ │ │ │ └── OSAProactiveNavigatorCustomEditor.cs.meta │ │ │ │ ├── CEditor.cs │ │ │ │ ├── CEditor.cs.meta │ │ │ │ ├── MenuItems.cs │ │ │ │ ├── MenuItems.cs.meta │ │ │ │ ├── OSA.Core.Editor.asmdef │ │ │ │ ├── OSA.Core.Editor.asmdef.meta │ │ │ │ ├── OSAEditorConst.cs │ │ │ │ ├── OSAEditorConst.cs.meta │ │ │ │ ├── OSAWizard.meta │ │ │ │ ├── OSAWizard │ │ │ │ │ ├── BaseOSAWindow.cs │ │ │ │ │ ├── BaseOSAWindow.cs.meta │ │ │ │ │ ├── CWiz.cs │ │ │ │ │ ├── CWiz.cs.meta │ │ │ │ │ ├── CreateOSAWindow.cs │ │ │ │ │ ├── CreateOSAWindow.cs.meta │ │ │ │ │ ├── CustomAdapterConfigurators.meta │ │ │ │ │ ├── CustomAdapterConfigurators │ │ │ │ │ │ ├── CustomAdapterConfiguratorAttribute.cs │ │ │ │ │ │ ├── CustomAdapterConfiguratorAttribute.cs.meta │ │ │ │ │ │ ├── ICustomAdapterConfigurator.cs │ │ │ │ │ │ └── ICustomAdapterConfigurator.cs.meta │ │ │ │ │ ├── InitOSAWindow.cs │ │ │ │ │ └── InitOSAWindow.cs.meta │ │ │ │ ├── PluginPathTracker.cs │ │ │ │ └── PluginPathTracker.cs.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient.png.meta │ │ │ │ ├── osa-icon.png │ │ │ │ └── osa-icon.png.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── AdditionalComponents.meta │ │ │ ├── AdditionalComponents │ │ │ ├── OSAContentDecorator.cs │ │ │ ├── OSAContentDecorator.cs.meta │ │ │ ├── OSAPercentageContentPaddingSetter.cs │ │ │ ├── OSAPercentageContentPaddingSetter.cs.meta │ │ │ ├── OSAProactiveNavigator.cs │ │ │ └── OSAProactiveNavigator.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ ├── AbstractViewsHolder.cs │ │ │ ├── AbstractViewsHolder.cs.meta │ │ │ ├── BaseItemViewsHolder.cs │ │ │ ├── BaseItemViewsHolder.cs.meta │ │ │ ├── BaseParams.cs │ │ │ ├── BaseParams.cs.meta │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── Animations.meta │ │ │ │ ├── Animations │ │ │ │ │ ├── AnimationCancelling.cs │ │ │ │ │ ├── AnimationCancelling.cs.meta │ │ │ │ │ ├── AnimationCancellingEvents.cs │ │ │ │ │ ├── AnimationCancellingEvents.cs.meta │ │ │ │ │ ├── AnimationFunctionType.cs │ │ │ │ │ ├── AnimationFunctionType.cs.meta │ │ │ │ │ ├── AnimationParams.cs │ │ │ │ │ ├── AnimationParams.cs.meta │ │ │ │ │ ├── SmoothScrollCancellingEvents.cs │ │ │ │ │ ├── SmoothScrollCancellingEvents.cs.meta │ │ │ │ │ ├── UserAnimationsCancellingEvents.cs │ │ │ │ │ └── UserAnimationsCancellingEvents.cs.meta │ │ │ │ ├── Gallery.meta │ │ │ │ └── Gallery │ │ │ │ │ ├── GalleryAnimation.cs │ │ │ │ │ ├── GalleryAnimation.cs.meta │ │ │ │ │ ├── GalleryEffectParams.cs │ │ │ │ │ ├── GalleryEffectParams.cs.meta │ │ │ │ │ ├── GalleryRotation.cs │ │ │ │ │ ├── GalleryRotation.cs.meta │ │ │ │ │ ├── GalleryScale.cs │ │ │ │ │ └── GalleryScale.cs.meta │ │ │ ├── IOSA.cs │ │ │ ├── IOSA.cs.meta │ │ │ ├── ItemCountChangeMode.cs │ │ │ ├── ItemCountChangeMode.cs.meta │ │ │ ├── ItemsDescriptor.cs │ │ │ ├── ItemsDescriptor.cs.meta │ │ │ ├── LayoutInfo.cs │ │ │ ├── LayoutInfo.cs.meta │ │ │ ├── OSA.cs │ │ │ ├── OSA.cs.meta │ │ │ ├── OSAConst.cs │ │ │ ├── OSAConst.cs.meta │ │ │ ├── OSADebugger.cs │ │ │ ├── OSADebugger.cs.meta │ │ │ ├── OSAException.cs │ │ │ ├── OSAException.cs.meta │ │ │ ├── OSAInternal.cs │ │ │ ├── OSAInternal.cs.meta │ │ │ ├── OSAMath.cs │ │ │ ├── OSAMath.cs.meta │ │ │ ├── OSASubComponents.cs │ │ │ ├── OSASubComponents.cs.meta │ │ │ ├── OSAUtil.cs │ │ │ ├── OSAUtil.cs.meta │ │ │ ├── Snapper8.cs │ │ │ ├── Snapper8.cs.meta │ │ │ ├── SubComponents.meta │ │ │ └── SubComponents │ │ │ │ ├── AllowContentOutsideBoundsMode.cs │ │ │ │ ├── AllowContentOutsideBoundsMode.cs.meta │ │ │ │ ├── BaseNavigationManager.cs │ │ │ │ ├── BaseNavigationManager.cs.meta │ │ │ │ ├── ComputeVisibilityManager.cs │ │ │ │ ├── ComputeVisibilityManager.cs.meta │ │ │ │ ├── ComputeVisibilityParams.cs │ │ │ │ ├── ComputeVisibilityParams.cs.meta │ │ │ │ ├── ContentSizeOrPositionChangeParams.cs │ │ │ │ ├── ContentSizeOrPositionChangeParams.cs.meta │ │ │ │ ├── InternalState.cs │ │ │ │ ├── InternalState.cs.meta │ │ │ │ ├── List.meta │ │ │ │ ├── List │ │ │ │ ├── ListNavigationManager.cs │ │ │ │ ├── ListNavigationManager.cs.meta │ │ │ │ ├── ListViewsHolderFinder.cs │ │ │ │ └── ListViewsHolderFinder.cs.meta │ │ │ │ ├── NavigationManager.cs │ │ │ │ ├── NavigationManager.cs.meta │ │ │ │ ├── NestingManager.cs │ │ │ │ ├── NestingManager.cs.meta │ │ │ │ ├── ReleaseFromPullManager.cs │ │ │ │ ├── ReleaseFromPullManager.cs.meta │ │ │ │ ├── SelectionWatcher.cs │ │ │ │ ├── SelectionWatcher.cs.meta │ │ │ │ ├── ViewsHolderFinder.cs │ │ │ │ └── ViewsHolderFinder.cs.meta │ │ │ ├── CustomAdapters.meta │ │ │ ├── CustomAdapters │ │ │ ├── GridView.meta │ │ │ └── GridView │ │ │ │ ├── CellGroupViewsHolder.cs │ │ │ │ ├── CellGroupViewsHolder.cs.meta │ │ │ │ ├── CellViewsHolder.cs │ │ │ │ ├── CellViewsHolder.cs.meta │ │ │ │ ├── GridAdapter.cs │ │ │ │ ├── GridAdapter.cs.meta │ │ │ │ ├── GridParams.cs │ │ │ │ ├── GridParams.cs.meta │ │ │ │ ├── SubComponents.meta │ │ │ │ └── SubComponents │ │ │ │ ├── GridNavigationManager.cs │ │ │ │ ├── GridNavigationManager.cs.meta │ │ │ │ ├── GridViewsHolderFinder.cs │ │ │ │ └── GridViewsHolderFinder.cs.meta │ │ │ ├── CustomParams.meta │ │ │ ├── CustomParams │ │ │ ├── BaseParamsWithPrefab.cs │ │ │ ├── BaseParamsWithPrefab.cs.meta │ │ │ ├── BaseParamsWithPrefabAndData.cs │ │ │ ├── BaseParamsWithPrefabAndData.cs.meta │ │ │ ├── BaseParamsWithPrefabAndLazyData.cs │ │ │ └── BaseParamsWithPrefabAndLazyData.cs.meta │ │ │ ├── DataHelpers.meta │ │ │ ├── DataHelpers │ │ │ ├── AsyncBufferredDataSource.cs │ │ │ ├── AsyncBufferredDataSource.cs.meta │ │ │ ├── BufferredDataSource.cs │ │ │ ├── BufferredDataSource.cs.meta │ │ │ ├── FilterableDataHelper.cs │ │ │ ├── FilterableDataHelper.cs.meta │ │ │ ├── LazyDataHelper.cs │ │ │ ├── LazyDataHelper.cs.meta │ │ │ ├── LazyList.cs │ │ │ ├── LazyList.cs.meta │ │ │ ├── SimpleDataHelper.cs │ │ │ └── SimpleDataHelper.cs.meta │ │ │ ├── OSA.Core.asmdef │ │ │ ├── OSA.Core.asmdef.meta │ │ │ ├── Util.meta │ │ │ ├── Util │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── ExpandCollapseAnimationState.cs │ │ │ │ └── ExpandCollapseAnimationState.cs.meta │ │ │ ├── OSASnapperFocusedItemInfo.cs │ │ │ └── OSASnapperFocusedItemInfo.cs.meta │ │ │ ├── frame8.meta │ │ │ └── frame8 │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ ├── IInitializable8.cs │ │ │ ├── IInitializable8.cs.meta │ │ │ ├── Singleton8.cs │ │ │ ├── Singleton8.cs.meta │ │ │ ├── UIUtils8.cs │ │ │ └── UIUtils8.cs.meta │ │ │ ├── DotNETCoreCompat.cs │ │ │ ├── DotNETCoreCompat.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── RectTransformExtensions.cs │ │ │ ├── RectTransformExtensions.cs.meta │ │ │ ├── TransformExtensions.cs │ │ │ ├── TransformExtensions.cs.meta │ │ │ ├── VectorExtensions.cs │ │ │ └── VectorExtensions.cs.meta │ │ │ ├── IScrollRectProxy.cs │ │ │ ├── IScrollRectProxy.cs.meta │ │ │ ├── ScrollbarFixer8.cs │ │ │ ├── ScrollbarFixer8.cs.meta │ │ │ ├── version.txt │ │ │ └── version.txt.meta │ │ ├── Docs.meta │ │ ├── Docs │ │ ├── Manual link.txt │ │ └── Manual link.txt.meta │ │ ├── Extra.meta │ │ └── Extra │ │ ├── PluginSupport.meta │ │ ├── PluginSupport │ │ ├── Playmaker.meta │ │ ├── Playmaker │ │ │ ├── PlaymakerSupport.zip │ │ │ ├── PlaymakerSupport.zip.meta │ │ │ ├── README.txt │ │ │ └── README.txt.meta │ │ ├── TMPro.meta │ │ └── TMPro │ │ │ ├── TMPro instructions.txt │ │ │ └── TMPro instructions.txt.meta │ │ ├── README.txt │ │ └── README.txt.meta ├── I2.meta ├── I2 │ ├── Localization.meta │ └── Localization │ │ ├── I2 Localization - Readme.txt │ │ ├── I2 Localization - Readme.txt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Configurables.meta │ │ ├── Configurables │ │ ├── PersistentStorage.cs │ │ ├── PersistentStorage.cs.meta │ │ ├── SpecializationManager.cs │ │ └── SpecializationManager.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── EditorTools.cs │ │ ├── EditorTools.cs.meta │ │ ├── I2Editor.asmdef │ │ ├── I2Editor.asmdef.meta │ │ ├── Inspectors.meta │ │ ├── Inspectors │ │ │ ├── LanguageSourceAssetInspector.cs │ │ │ ├── LanguageSourceAssetInspector.cs.meta │ │ │ ├── LanguageSourceInspector.cs │ │ │ ├── LanguageSourceInspector.cs.meta │ │ │ ├── LocalizationEditor.cs │ │ │ ├── LocalizationEditor.cs.meta │ │ │ ├── LocalizationParamsManagerInspector.cs │ │ │ ├── LocalizationParamsManagerInspector.cs.meta │ │ │ ├── LocalizeDropdownInspector.cs │ │ │ ├── LocalizeDropdownInspector.cs.meta │ │ │ ├── LocalizeInspector.cs │ │ │ ├── LocalizeInspector.cs.meta │ │ │ ├── ResourceManagerInspector.cs │ │ │ ├── ResourceManagerInspector.cs.meta │ │ │ ├── SetLanguageInspector.cs │ │ │ ├── SetLanguageInspector.cs.meta │ │ │ ├── TermsPopup_Drawer.cs │ │ │ └── TermsPopup_Drawer.cs.meta │ │ ├── Localization.meta │ │ ├── Localization │ │ │ ├── LocalizationEditor.cs │ │ │ ├── LocalizationEditor.cs.meta │ │ │ ├── LocalizationEditor_Languages.cs │ │ │ ├── LocalizationEditor_Languages.cs.meta │ │ │ ├── LocalizationEditor_Spreadsheet_Google.cs │ │ │ ├── LocalizationEditor_Spreadsheet_Google.cs.meta │ │ │ ├── LocalizationEditor_Spreadsheet_Local.cs │ │ │ ├── LocalizationEditor_Spreadsheet_Local.cs.meta │ │ │ ├── LocalizationEditor_Terms.cs │ │ │ ├── LocalizationEditor_Terms.cs.meta │ │ │ ├── LocalizationEditor_Terms_Description.cs │ │ │ ├── LocalizationEditor_Terms_Description.cs.meta │ │ │ ├── LocalizationEditor_Tools.cs │ │ │ ├── LocalizationEditor_Tools.cs.meta │ │ │ ├── LocalizationEditor_Tools_Categorize.cs │ │ │ ├── LocalizationEditor_Tools_Categorize.cs.meta │ │ │ ├── LocalizationEditor_Tools_CharSet.cs │ │ │ ├── LocalizationEditor_Tools_CharSet.cs.meta │ │ │ ├── LocalizationEditor_Tools_MergeTerms.cs │ │ │ ├── LocalizationEditor_Tools_MergeTerms.cs.meta │ │ │ ├── LocalizationEditor_Tools_NoLocalized.cs │ │ │ ├── LocalizationEditor_Tools_NoLocalized.cs.meta │ │ │ ├── LocalizationEditor_Tools_ParseTerms.cs │ │ │ ├── LocalizationEditor_Tools_ParseTerms.cs.meta │ │ │ ├── LocalizationEditor_Tools_Scenes.cs │ │ │ ├── LocalizationEditor_Tools_Scenes.cs.meta │ │ │ ├── LocalizationEditor_Tools_Script.cs │ │ │ ├── LocalizationEditor_Tools_Script.cs.meta │ │ │ ├── LocalizationEditor_Warnings.cs │ │ │ └── LocalizationEditor_Warnings.cs.meta │ │ ├── PostProcessBuild_ANDROID.cs │ │ ├── PostProcessBuild_ANDROID.cs.meta │ │ ├── PostProcessBuild_IOS.cs │ │ ├── PostProcessBuild_IOS.cs.meta │ │ ├── PostProcessBuild_UnloadLanguages.cs │ │ ├── PostProcessBuild_UnloadLanguages.cs.meta │ │ ├── Unity XCode.meta │ │ ├── Unity XCode │ │ │ ├── UnityEditor.iOS_I2Loc.Xcode.dll │ │ │ ├── UnityEditor.iOS_I2Loc.Xcode.dll.meta │ │ │ ├── Xcode.txt │ │ │ └── Xcode.txt.meta │ │ ├── UpgradeManager.cs │ │ └── UpgradeManager.cs.meta │ │ ├── EventCallback.cs │ │ ├── EventCallback.cs.meta │ │ ├── Google.meta │ │ ├── Google │ │ ├── GoogleLanguages.cs │ │ ├── GoogleLanguages.cs.meta │ │ ├── GoogleTranslation.cs │ │ ├── GoogleTranslation.cs.meta │ │ ├── GoogleTranslation_Post.cs │ │ ├── GoogleTranslation_Post.cs.meta │ │ ├── GoogleTranslation_Queries.cs │ │ ├── GoogleTranslation_Queries.cs.meta │ │ ├── SimpleJSON.cs │ │ ├── SimpleJSON.cs.meta │ │ ├── TranslationJob.cs │ │ ├── TranslationJob.cs.meta │ │ ├── TranslationJob_GET.cs │ │ ├── TranslationJob_GET.cs.meta │ │ ├── TranslationJob_Main.cs │ │ ├── TranslationJob_Main.cs.meta │ │ ├── TranslationJob_POST.cs │ │ ├── TranslationJob_POST.cs.meta │ │ ├── TranslationJob_WEB.cs │ │ └── TranslationJob_WEB.cs.meta │ │ ├── I2Localization.Scripts.asmdef │ │ ├── I2Localization.Scripts.asmdef.meta │ │ ├── LanguageData.cs │ │ ├── LanguageData.cs.meta │ │ ├── LanguageSource.meta │ │ ├── LanguageSource │ │ ├── LanguageSource.cs │ │ ├── LanguageSource.cs.meta │ │ ├── LanguageSourceAsset.cs │ │ ├── LanguageSourceAsset.cs.meta │ │ ├── LanguageSourceData.cs │ │ ├── LanguageSourceData.cs.meta │ │ ├── LanguageSourceData_Assets.cs │ │ ├── LanguageSourceData_Assets.cs.meta │ │ ├── LanguageSourceData_Export_CSV.cs │ │ ├── LanguageSourceData_Export_CSV.cs.meta │ │ ├── LanguageSourceData_Export_Google.cs │ │ ├── LanguageSourceData_Export_Google.cs.meta │ │ ├── LanguageSourceData_Import_CSV.cs │ │ ├── LanguageSourceData_Import_CSV.cs.meta │ │ ├── LanguageSourceData_Import_Google.cs │ │ ├── LanguageSourceData_Import_Google.cs.meta │ │ ├── LanguageSourceData_Languages.cs │ │ ├── LanguageSourceData_Languages.cs.meta │ │ ├── LanguageSourceData_Misc.cs │ │ ├── LanguageSourceData_Misc.cs.meta │ │ ├── LanguageSourceData_Terms.cs │ │ └── LanguageSourceData_Terms.cs.meta │ │ ├── LocalizationReader.cs │ │ ├── LocalizationReader.cs.meta │ │ ├── Localize.cs │ │ ├── Localize.cs.meta │ │ ├── LocalizeDropdown.cs │ │ ├── LocalizeDropdown.cs.meta │ │ ├── Manager.meta │ │ ├── Manager │ │ ├── LocalizationManager.cs │ │ ├── LocalizationManager.cs.meta │ │ ├── LocalizationManager_Language.cs │ │ ├── LocalizationManager_Language.cs.meta │ │ ├── LocalizationManager_Parameters.cs │ │ ├── LocalizationManager_Parameters.cs.meta │ │ ├── LocalizationManager_RTL.cs │ │ ├── LocalizationManager_RTL.cs.meta │ │ ├── LocalizationManager_Sources.cs │ │ ├── LocalizationManager_Sources.cs.meta │ │ ├── LocalizationManager_SystemLanguage.cs │ │ ├── LocalizationManager_SystemLanguage.cs.meta │ │ ├── LocalizationManager_Targets.cs │ │ ├── LocalizationManager_Targets.cs.meta │ │ ├── LocalizationManager_Translation.cs │ │ └── LocalizationManager_Translation.cs.meta │ │ ├── Targets.meta │ │ ├── Targets │ │ ├── ILocalizeTarget.cs │ │ ├── ILocalizeTarget.cs.meta │ │ ├── ILocalizeTargetDesc.cs │ │ ├── ILocalizeTargetDesc.cs.meta │ │ ├── LocalizeTarget_2DToolKit_Label.cs │ │ ├── LocalizeTarget_2DToolKit_Label.cs.meta │ │ ├── LocalizeTarget_2DToolKit_Sprite.cs │ │ ├── LocalizeTarget_2DToolKit_Sprite.cs.meta │ │ ├── LocalizeTarget_NGUI_Label.cs │ │ ├── LocalizeTarget_NGUI_Label.cs.meta │ │ ├── LocalizeTarget_NGUI_Sprite.cs │ │ ├── LocalizeTarget_NGUI_Sprite.cs.meta │ │ ├── LocalizeTarget_NGUI_Texture.cs │ │ ├── LocalizeTarget_NGUI_Texture.cs.meta │ │ ├── LocalizeTarget_SVGImporter_Image.cs │ │ ├── LocalizeTarget_SVGImporter_Image.cs.meta │ │ ├── LocalizeTarget_SVGImporter_Renderer.cs │ │ ├── LocalizeTarget_SVGImporter_Renderer.cs.meta │ │ ├── LocalizeTarget_TextMeshPro_Label.cs │ │ ├── LocalizeTarget_TextMeshPro_Label.cs.meta │ │ ├── LocalizeTarget_TextMeshPro_UGUI.cs │ │ ├── LocalizeTarget_TextMeshPro_UGUI.cs.meta │ │ ├── LocalizeTarget_UnityStandard_AudioSource.cs │ │ ├── LocalizeTarget_UnityStandard_AudioSource.cs.meta │ │ ├── LocalizeTarget_UnityStandard_Child.cs │ │ ├── LocalizeTarget_UnityStandard_Child.cs.meta │ │ ├── LocalizeTarget_UnityStandard_MeshRenderer.cs │ │ ├── LocalizeTarget_UnityStandard_MeshRenderer.cs.meta │ │ ├── LocalizeTarget_UnityStandard_Prefab.cs │ │ ├── LocalizeTarget_UnityStandard_Prefab.cs.meta │ │ ├── LocalizeTarget_UnityStandard_SpriteRenderer.cs │ │ ├── LocalizeTarget_UnityStandard_SpriteRenderer.cs.meta │ │ ├── LocalizeTarget_UnityStandard_TextMesh.cs │ │ ├── LocalizeTarget_UnityStandard_TextMesh.cs.meta │ │ ├── LocalizeTarget_UnityStandard_VideoPlayer.cs │ │ ├── LocalizeTarget_UnityStandard_VideoPlayer.cs.meta │ │ ├── LocalizeTarget_UnityUI_Image.cs │ │ ├── LocalizeTarget_UnityUI_Image.cs.meta │ │ ├── LocalizeTarget_UnityUI_RawImage.cs │ │ ├── LocalizeTarget_UnityUI_RawImage.cs.meta │ │ ├── LocalizeTarget_UnityUI_Text.cs │ │ └── LocalizeTarget_UnityUI_Text.cs.meta │ │ ├── TermData.cs │ │ ├── TermData.cs.meta │ │ ├── Utils.meta │ │ └── Utils │ │ ├── AutoChangeCultureInfo.cs │ │ ├── AutoChangeCultureInfo.cs.meta │ │ ├── CoroutineManager.cs │ │ ├── CoroutineManager.cs.meta │ │ ├── CustomLocalizeCallback.cs │ │ ├── CustomLocalizeCallback.cs.meta │ │ ├── HindiFixer.cs │ │ ├── HindiFixer.cs.meta │ │ ├── I2Utils.cs │ │ ├── I2Utils.cs.meta │ │ ├── LocalizationParamsManager.cs │ │ ├── LocalizationParamsManager.cs.meta │ │ ├── LocalizedString.cs │ │ ├── LocalizedString.cs.meta │ │ ├── RTLFixer.cs │ │ ├── RTLFixer.cs.meta │ │ ├── RegisterCallback_AllowSyncFromGoogle.cs │ │ ├── RegisterCallback_AllowSyncFromGoogle.cs.meta │ │ ├── RegisterGlobalParameters.cs │ │ ├── RegisterGlobalParameters.cs.meta │ │ ├── ResourceManager.cs │ │ ├── ResourceManager.cs.meta │ │ ├── SetLanguage.cs │ │ ├── SetLanguage.cs.meta │ │ ├── SetLanguageDropdown.cs │ │ ├── SetLanguageDropdown.cs.meta │ │ ├── StringObfuscator.cs │ │ └── StringObfuscator.cs.meta ├── Le Tai's Asset.meta ├── Le Tai's Asset │ ├── TranslucentImage.meta │ └── TranslucentImage │ │ ├── CHANGELOG.txt │ │ ├── CHANGELOG.txt.meta │ │ ├── LeTai.TranslucentImage.asmdef │ │ ├── LeTai.TranslucentImage.asmdef.meta │ │ ├── Material.meta │ │ ├── Material │ │ ├── Default-Translucent.mat │ │ ├── Default-Translucent.mat.meta │ │ ├── Overlay Translucent Image.mat │ │ └── Overlay Translucent Image.mat.meta │ │ ├── Offline Documentation.pdf │ │ ├── Offline Documentation.pdf.meta │ │ ├── Online Documentation (recommended).txt │ │ ├── Online Documentation (recommended).txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── EfficientBlur.shader │ │ ├── EfficientBlur.shader.meta │ │ ├── FillCrop.shader │ │ ├── FillCrop.shader.meta │ │ ├── TranslucentImage.shader │ │ ├── TranslucentImage.shader.meta │ │ ├── UniversalRP.meta │ │ ├── UniversalRP │ │ │ ├── EfficientBlur_UniversalRP.shader │ │ │ ├── EfficientBlur_UniversalRP.shader.meta │ │ │ ├── FillCrop_UniversalRP.shader │ │ │ ├── FillCrop_UniversalRP.shader.meta │ │ │ ├── lib.hlsl │ │ │ └── lib.hlsl.meta │ │ ├── common.hlsl │ │ ├── common.hlsl.meta │ │ ├── lib.cginc │ │ └── lib.cginc.meta │ │ ├── Script.meta │ │ ├── Script │ │ ├── BlurAlgorithm.meta │ │ ├── BlurAlgorithm │ │ │ ├── BlurConfig.cs │ │ │ ├── BlurConfig.cs.meta │ │ │ ├── IBlurAlgorithm.cs │ │ │ ├── IBlurAlgorithm.cs.meta │ │ │ ├── ScalableBlur.cs │ │ │ ├── ScalableBlur.cs.meta │ │ │ ├── ScalableBlurConfig.cs │ │ │ └── ScalableBlurConfig.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorProperty.cs │ │ │ ├── EditorProperty.cs.meta │ │ │ ├── LeTai.TranslucentImage.Editor.asmdef │ │ │ ├── LeTai.TranslucentImage.Editor.asmdef.meta │ │ │ ├── MenuIntegration.cs │ │ │ ├── MenuIntegration.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── BlurConfig Icon.png │ │ │ │ ├── BlurConfig Icon.png.meta │ │ │ │ ├── BlurSource Icon.png │ │ │ │ ├── BlurSource Icon.png.meta │ │ │ │ ├── TranslucentImage Icon.png │ │ │ │ └── TranslucentImage Icon.png.meta │ │ │ ├── ScalableBlurConfigEditor.cs │ │ │ ├── ScalableBlurConfigEditor.cs.meta │ │ │ ├── ScenceGizmoAutoDisable.cs │ │ │ ├── ScenceGizmoAutoDisable.cs.meta │ │ │ ├── TranslucentImageEditor.cs │ │ │ ├── TranslucentImageEditor.cs.meta │ │ │ ├── TranslucentImageSourceEditor.cs │ │ │ ├── TranslucentImageSourceEditor.cs.meta │ │ │ ├── Unity2019ShaderCompilerBugWorkaround.cs │ │ │ └── Unity2019ShaderCompilerBugWorkaround.cs.meta │ │ ├── TranslucentImage.cs │ │ ├── TranslucentImage.cs.meta │ │ ├── TranslucentImageEditorEnhancement.cs │ │ ├── TranslucentImageEditorEnhancement.cs.meta │ │ ├── TranslucentImageMeshEffect.cs │ │ ├── TranslucentImageMeshEffect.cs.meta │ │ ├── TranslucentImageSource.cs │ │ ├── TranslucentImageSource.cs.meta │ │ ├── TrueShadowCompat.cs │ │ ├── TrueShadowCompat.cs.meta │ │ ├── UniversalRP.meta │ │ ├── UniversalRP │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── LeTai.TranslucentImage.UniversalRP.Editor.asmdef │ │ │ │ ├── LeTai.TranslucentImage.UniversalRP.Editor.asmdef.meta │ │ │ │ ├── RendererFeatureChecker.cs │ │ │ │ ├── RendererFeatureChecker.cs.meta │ │ │ │ ├── TranslucentImageBlurSourceEditor.cs │ │ │ │ └── TranslucentImageBlurSourceEditor.cs.meta │ │ │ ├── LeTai.TranslucentImage.UniversalRP.asmdef │ │ │ ├── LeTai.TranslucentImage.UniversalRP.asmdef.meta │ │ │ ├── Render Pass.meta │ │ │ └── Render Pass │ │ │ │ ├── TranslucentImageBlurRenderPass.cs │ │ │ │ ├── TranslucentImageBlurRenderPass.cs.meta │ │ │ │ ├── TranslucentImageBlurRenderPassRenderGraph.cs │ │ │ │ ├── TranslucentImageBlurRenderPassRenderGraph.cs.meta │ │ │ │ ├── TranslucentImageBlurSource.cs │ │ │ │ └── TranslucentImageBlurSource.cs.meta │ │ ├── Utilities.meta │ │ └── Utilities │ │ │ ├── BlurExecutor.cs │ │ │ ├── BlurExecutor.cs.meta │ │ │ ├── Extensions.cs │ │ │ ├── Extensions.cs.meta │ │ │ ├── ResizableScreenRect.cs │ │ │ ├── ResizableScreenRect.cs.meta │ │ │ ├── ShaderId.cs │ │ │ ├── ShaderId.cs.meta │ │ │ ├── Shims.cs │ │ │ └── Shims.cs.meta │ │ ├── UniversalRP README.txt │ │ └── UniversalRP README.txt.meta ├── Sirenix.meta ├── Sirenix │ ├── Assemblies.meta │ ├── Assemblies │ │ ├── NoEditor.meta │ │ ├── NoEditor │ │ │ ├── Sirenix.Serialization.dll │ │ │ ├── Sirenix.Serialization.dll.meta │ │ │ ├── Sirenix.Utilities.dll │ │ │ └── Sirenix.Utilities.dll.meta │ │ ├── NoEmitAndNoEditor.meta │ │ ├── NoEmitAndNoEditor │ │ │ ├── Sirenix.Serialization.dll │ │ │ ├── Sirenix.Serialization.dll.meta │ │ │ ├── Sirenix.Utilities.dll │ │ │ └── Sirenix.Utilities.dll.meta │ │ ├── Sirenix.OdinInspector.Attributes.dll │ │ ├── Sirenix.OdinInspector.Attributes.dll.meta │ │ ├── Sirenix.OdinInspector.Attributes.xml │ │ ├── Sirenix.OdinInspector.Attributes.xml.meta │ │ ├── Sirenix.OdinInspector.Editor.dll │ │ ├── Sirenix.OdinInspector.Editor.dll.meta │ │ ├── Sirenix.OdinInspector.Editor.xml │ │ ├── Sirenix.OdinInspector.Editor.xml.meta │ │ ├── Sirenix.Reflection.Editor.dll │ │ ├── Sirenix.Reflection.Editor.dll.meta │ │ ├── Sirenix.Serialization.Config.dll │ │ ├── Sirenix.Serialization.Config.dll.meta │ │ ├── Sirenix.Serialization.Config.xml │ │ ├── Sirenix.Serialization.Config.xml.meta │ │ ├── Sirenix.Serialization.dll │ │ ├── Sirenix.Serialization.dll.meta │ │ ├── Sirenix.Serialization.xml │ │ ├── Sirenix.Serialization.xml.meta │ │ ├── Sirenix.Utilities.Editor.dll │ │ ├── Sirenix.Utilities.Editor.dll.meta │ │ ├── Sirenix.Utilities.Editor.xml │ │ ├── Sirenix.Utilities.Editor.xml.meta │ │ ├── Sirenix.Utilities.dll │ │ ├── Sirenix.Utilities.dll.meta │ │ ├── Sirenix.Utilities.xml │ │ ├── Sirenix.Utilities.xml.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Demos.meta │ ├── Odin Inspector.meta │ ├── Odin Inspector │ │ ├── Assets.meta │ │ ├── Assets │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── Bootstrap License.txt │ │ │ │ ├── Bootstrap License.txt.meta │ │ │ │ ├── ConfigData.bytes │ │ │ │ ├── ConfigData.bytes.meta │ │ │ │ ├── OdinPathLookup.asset │ │ │ │ ├── OdinPathLookup.asset.meta │ │ │ │ ├── SdfIconAtlas.png │ │ │ │ └── SdfIconAtlas.png.meta │ │ ├── Config.meta │ │ ├── Config │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── GeneralDrawerConfig.asset │ │ │ │ ├── GeneralDrawerConfig.asset.meta │ │ │ │ ├── InspectorConfig.asset │ │ │ │ ├── InspectorConfig.asset.meta │ │ │ │ ├── OdinModuleConfig.asset │ │ │ │ └── OdinModuleConfig.asset.meta │ │ ├── Modules.meta │ │ ├── Modules │ │ │ ├── Unity.Addressables.data │ │ │ ├── Unity.Addressables.data.meta │ │ │ ├── Unity.Entities.data │ │ │ ├── Unity.Entities.data.meta │ │ │ ├── Unity.Localization.data │ │ │ ├── Unity.Localization.data.meta │ │ │ ├── Unity.Mathematics.data │ │ │ └── Unity.Mathematics.data.meta │ │ ├── OdinUpgrader.cs │ │ └── OdinUpgrader.cs.meta │ ├── Readme.txt │ └── Readme.txt.meta ├── System.Runtime.CompilerServices.Unsafe.dll ├── System.Runtime.CompilerServices.Unsafe.dll.meta ├── Zenject.meta └── Zenject │ ├── LICENSE.txt │ ├── LICENSE.txt.meta │ ├── OptionalExtras.meta │ ├── OptionalExtras │ ├── AutoMocking.zip │ ├── AutoMocking.zip.meta │ ├── AutoSubstitute.zip │ ├── AutoSubstitute.zip.meta │ ├── IntegrationTests.meta │ ├── IntegrationTests │ │ ├── Bindings.meta │ │ ├── Bindings │ │ │ ├── TestDiContainerMethods.meta │ │ │ ├── TestDiContainerMethods │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── Foo2.cs │ │ │ │ ├── Foo2.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ ├── Gorp.cs.meta │ │ │ │ ├── Gorp2.cs │ │ │ │ └── Gorp2.cs.meta │ │ │ ├── TestFromComponentInHierarchyGameObjectContext.meta │ │ │ ├── TestFromComponentInHierarchyGameObjectContext │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ └── Gorp.cs.meta │ │ │ ├── TestFromGameObjectInstaller.meta │ │ │ ├── TestFromGameObjectInstaller │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ └── Foo.cs.meta │ │ │ ├── TestFromNewScriptableObjectResource.meta │ │ │ ├── TestFromNewScriptableObjectResource │ │ │ │ ├── Bob.cs │ │ │ │ ├── Bob.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ └── Foo.cs.meta │ │ │ ├── TestFromPrefab.meta │ │ │ ├── TestFromPrefab │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Bob.cs │ │ │ │ ├── Bob.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ ├── Gorp.cs.meta │ │ │ │ ├── Jim.cs │ │ │ │ ├── Jim.cs.meta │ │ │ │ ├── Norf.cs │ │ │ │ ├── Norf.cs.meta │ │ │ │ ├── Norf2.cs │ │ │ │ ├── Norf2.cs.meta │ │ │ │ ├── Qux.cs │ │ │ │ └── Qux.cs.meta │ │ │ ├── TestFromPrefabInstaller.meta │ │ │ ├── TestFromPrefabInstaller │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ └── Foo.cs.meta │ │ │ ├── TestFromPrefabResource.meta │ │ │ ├── TestFromPrefabResource │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Bob.cs │ │ │ │ ├── Bob.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ ├── Gorp.cs.meta │ │ │ │ ├── Jim.cs │ │ │ │ ├── Jim.cs.meta │ │ │ │ ├── Norf.cs │ │ │ │ ├── Norf.cs.meta │ │ │ │ ├── Norf2.cs │ │ │ │ ├── Norf2.cs.meta │ │ │ │ ├── Qux.cs │ │ │ │ └── Qux.cs.meta │ │ │ ├── TestFromSubContainerPrefab.meta │ │ │ ├── TestFromSubContainerPrefab │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── CircBar.cs │ │ │ │ ├── CircBar.cs.meta │ │ │ │ ├── CircFoo.cs │ │ │ │ ├── CircFoo.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ └── Gorp.cs.meta │ │ │ ├── TestFromSubContainerPrefabResource.meta │ │ │ ├── TestFromSubContainerPrefabResource │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ └── Gorp.cs.meta │ │ │ ├── TestInstantiateCallback.meta │ │ │ └── TestInstantiateCallback │ │ │ │ ├── Foo.cs │ │ │ │ └── Foo.cs.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── PrefabFactory.meta │ │ │ ├── PrefabFactory │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── Foo2.cs │ │ │ │ └── Foo2.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── TestBindFactory.meta │ │ │ │ ├── TestBindFactory │ │ │ │ │ ├── Bar.asset │ │ │ │ │ ├── Bar.asset.meta │ │ │ │ │ ├── Camera.prefab │ │ │ │ │ ├── Camera.prefab.meta │ │ │ │ │ ├── Foo.prefab │ │ │ │ │ ├── Foo.prefab.meta │ │ │ │ │ ├── FooSubContainer.prefab │ │ │ │ │ ├── FooSubContainer.prefab.meta │ │ │ │ │ ├── TestTexture.png │ │ │ │ │ └── TestTexture.png.meta │ │ │ │ ├── TestBindFactoryFive.meta │ │ │ │ ├── TestBindFactoryFive │ │ │ │ │ ├── Foo.prefab │ │ │ │ │ ├── Foo.prefab.meta │ │ │ │ │ ├── FooSubContainer.prefab │ │ │ │ │ └── FooSubContainer.prefab.meta │ │ │ │ ├── TestBindFactoryOne.meta │ │ │ │ ├── TestBindFactoryOne │ │ │ │ │ ├── Bar.asset │ │ │ │ │ ├── Bar.asset.meta │ │ │ │ │ ├── Foo.prefab │ │ │ │ │ ├── Foo.prefab.meta │ │ │ │ │ ├── FooSubContainer.prefab │ │ │ │ │ └── FooSubContainer.prefab.meta │ │ │ │ ├── TestGameObjectFactoryZero.meta │ │ │ │ ├── TestGameObjectFactoryZero │ │ │ │ │ ├── Cube.prefab │ │ │ │ │ └── Cube.prefab.meta │ │ │ │ ├── TestPrefabFactory.meta │ │ │ │ └── TestPrefabFactory │ │ │ │ │ ├── Foo.prefab │ │ │ │ │ ├── Foo.prefab.meta │ │ │ │ │ ├── Foo2.prefab │ │ │ │ │ └── Foo2.prefab.meta │ │ │ ├── TestBindFactory.meta │ │ │ ├── TestBindFactory │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ └── Foo.cs.meta │ │ │ ├── TestBindFactoryFive.meta │ │ │ ├── TestBindFactoryFive │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ └── FooInstaller.cs.meta │ │ │ ├── TestBindFactoryOne.meta │ │ │ └── TestBindFactoryOne │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ └── FooInstaller.cs.meta │ │ ├── Installers.meta │ │ ├── Installers │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── TestMonoInstallers.meta │ │ │ │ ├── TestMonoInstallers │ │ │ │ │ ├── BarInstaller.prefab │ │ │ │ │ ├── BarInstaller.prefab.meta │ │ │ │ │ ├── FooInstaller.prefab │ │ │ │ │ ├── FooInstaller.prefab.meta │ │ │ │ │ ├── QuxInstaller.prefab │ │ │ │ │ └── QuxInstaller.prefab.meta │ │ │ │ ├── TestScriptableObjectInstallers.meta │ │ │ │ └── TestScriptableObjectInstallers │ │ │ │ │ ├── BarInstaller.asset │ │ │ │ │ ├── BarInstaller.asset.meta │ │ │ │ │ ├── FooInstaller.asset │ │ │ │ │ ├── FooInstaller.asset.meta │ │ │ │ │ ├── QuxInstaller.asset │ │ │ │ │ └── QuxInstaller.asset.meta │ │ │ ├── TestInstallers.meta │ │ │ ├── TestInstallers │ │ │ │ ├── BarInstaller.cs │ │ │ │ ├── BarInstaller.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── QuxInstaller.cs │ │ │ │ └── QuxInstaller.cs.meta │ │ │ ├── TestMonoInstallers.meta │ │ │ ├── TestMonoInstallers │ │ │ │ ├── BarInstaller.cs │ │ │ │ ├── BarInstaller.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── QuxInstaller.cs │ │ │ │ └── QuxInstaller.cs.meta │ │ │ ├── TestScriptableObjectInstallers.meta │ │ │ └── TestScriptableObjectInstallers │ │ │ │ ├── BarInstaller.cs │ │ │ │ ├── BarInstaller.cs.meta │ │ │ │ ├── FooInstaller.cs │ │ │ │ ├── FooInstaller.cs.meta │ │ │ │ ├── QuxInstaller.cs │ │ │ │ └── QuxInstaller.cs.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ │ ├── TestAnimationStateBehaviourInject.meta │ │ │ ├── TestAnimationStateBehaviourInject │ │ │ │ ├── AnimatorController.controller │ │ │ │ ├── AnimatorController.controller.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── TestAnimationStateBehaviourInject.meta │ │ │ │ │ └── TestAnimationStateBehaviourInject │ │ │ │ │ │ ├── Foo.prefab │ │ │ │ │ │ └── Foo.prefab.meta │ │ │ │ ├── StateBehaviour1.cs │ │ │ │ └── StateBehaviour1.cs.meta │ │ │ ├── TestZenAutoInjecter.meta │ │ │ └── TestZenAutoInjecter │ │ │ │ ├── Bar.cs │ │ │ │ ├── Bar.cs.meta │ │ │ │ ├── Gorp.cs │ │ │ │ ├── Gorp.cs.meta │ │ │ │ ├── Qux.cs │ │ │ │ ├── Qux.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ ├── TestZenAutoInjecter.meta │ │ │ │ └── TestZenAutoInjecter │ │ │ │ ├── Bar.prefab │ │ │ │ ├── Bar.prefab.meta │ │ │ │ ├── GorpContext.prefab │ │ │ │ ├── GorpContext.prefab.meta │ │ │ │ ├── QuxProject.prefab │ │ │ │ ├── QuxProject.prefab.meta │ │ │ │ ├── QuxScene.prefab │ │ │ │ ├── QuxScene.prefab.meta │ │ │ │ ├── QuxSearch.prefab │ │ │ │ └── QuxSearch.prefab.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── TestBindGameObject.meta │ │ │ ├── TestBindGameObject │ │ │ │ ├── Cube.prefab │ │ │ │ └── Cube.prefab.meta │ │ │ ├── TestDiContainerMethods.meta │ │ │ ├── TestDiContainerMethods │ │ │ │ ├── Camera.prefab │ │ │ │ ├── Camera.prefab.meta │ │ │ │ ├── Foo.prefab │ │ │ │ ├── Foo.prefab.meta │ │ │ │ ├── Foo2.asset │ │ │ │ ├── Foo2.asset.meta │ │ │ │ ├── Gorp.prefab │ │ │ │ ├── Gorp.prefab.meta │ │ │ │ ├── Gorp2.asset │ │ │ │ └── Gorp2.asset.meta │ │ │ ├── TestFromComponentInHierarchyGameObjectContext.meta │ │ │ ├── TestFromComponentInHierarchyGameObjectContext │ │ │ │ ├── Foo.prefab │ │ │ │ └── Foo.prefab.meta │ │ │ ├── TestFromNewScriptableObjectResource.meta │ │ │ ├── TestFromNewScriptableObjectResource │ │ │ │ ├── Bob.asset │ │ │ │ ├── Bob.asset.meta │ │ │ │ ├── Foo.asset │ │ │ │ └── Foo.asset.meta │ │ │ ├── TestFromPrefab.meta │ │ │ ├── TestFromPrefab │ │ │ │ ├── Foo.prefab │ │ │ │ ├── Foo.prefab.meta │ │ │ │ ├── Foo2.prefab │ │ │ │ ├── Foo2.prefab.meta │ │ │ │ ├── Gorp.prefab │ │ │ │ ├── Gorp.prefab.meta │ │ │ │ ├── GorpAndQux.prefab │ │ │ │ ├── GorpAndQux.prefab.meta │ │ │ │ ├── JimAndBob.prefab │ │ │ │ ├── JimAndBob.prefab.meta │ │ │ │ ├── Norf.prefab │ │ │ │ └── Norf.prefab.meta │ │ │ ├── TestFromPrefabInstaller.meta │ │ │ ├── TestFromPrefabInstaller │ │ │ │ ├── Foo.prefab │ │ │ │ └── Foo.prefab.meta │ │ │ ├── TestFromPrefabResource.meta │ │ │ ├── TestFromPrefabResource │ │ │ │ ├── Foo.prefab │ │ │ │ ├── Foo.prefab.meta │ │ │ │ ├── Foo2.prefab │ │ │ │ ├── Foo2.prefab.meta │ │ │ │ ├── Gorp.prefab │ │ │ │ ├── Gorp.prefab.meta │ │ │ │ ├── GorpAndQux.prefab │ │ │ │ ├── GorpAndQux.prefab.meta │ │ │ │ ├── JimAndBob.prefab │ │ │ │ ├── JimAndBob.prefab.meta │ │ │ │ ├── Norf.prefab │ │ │ │ └── Norf.prefab.meta │ │ │ ├── TestFromResource.meta │ │ │ ├── TestFromResource │ │ │ │ ├── TestTexture.png │ │ │ │ ├── TestTexture.png.meta │ │ │ │ ├── TestTexture2.png │ │ │ │ └── TestTexture2.png.meta │ │ │ ├── TestFromSubContainerPrefab.meta │ │ │ ├── TestFromSubContainerPrefab │ │ │ │ ├── CircFoo.prefab │ │ │ │ ├── CircFoo.prefab.meta │ │ │ │ ├── Foo.prefab │ │ │ │ ├── Foo.prefab.meta │ │ │ │ ├── Foo2.prefab │ │ │ │ └── Foo2.prefab.meta │ │ │ ├── TestFromSubContainerPrefabResource.meta │ │ │ ├── TestFromSubContainerPrefabResource │ │ │ │ ├── FooSubContainer.prefab │ │ │ │ └── FooSubContainer.prefab.meta │ │ │ ├── TestInstantiateCallback.meta │ │ │ └── TestInstantiateCallback │ │ │ │ ├── Empty.prefab │ │ │ │ ├── Empty.prefab.meta │ │ │ │ ├── Foo.prefab │ │ │ │ └── Foo.prefab.meta │ │ ├── SceneContractTests.meta │ │ ├── SceneContractTests │ │ │ ├── AutoLoader.meta │ │ │ ├── AutoLoader │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── ZenjectDefaultSceneContractConfig.asset │ │ │ │ │ └── ZenjectDefaultSceneContractConfig.asset.meta │ │ │ │ ├── Scene1.unity │ │ │ │ ├── Scene1.unity.meta │ │ │ │ ├── Scene1Installer.cs │ │ │ │ ├── Scene1Installer.cs.meta │ │ │ │ ├── Scene2.unity │ │ │ │ ├── Scene2.unity.meta │ │ │ │ ├── Scene2Installer.cs │ │ │ │ ├── Scene2Installer.cs.meta │ │ │ │ ├── Scene3.unity │ │ │ │ ├── Scene3.unity.meta │ │ │ │ ├── Scene3Installer.cs │ │ │ │ └── Scene3Installer.cs.meta │ │ │ ├── Decorators.meta │ │ │ └── Decorators │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ ├── ZenjectDefaultSceneContractConfig.asset │ │ │ │ └── ZenjectDefaultSceneContractConfig.asset.meta │ │ │ │ ├── Scene1.unity │ │ │ │ ├── Scene1.unity.meta │ │ │ │ ├── Scene1Installer.cs │ │ │ │ ├── Scene1Installer.cs.meta │ │ │ │ ├── Scene2.unity │ │ │ │ ├── Scene2.unity.meta │ │ │ │ ├── Scene2Installer.cs │ │ │ │ └── Scene2Installer.cs.meta │ │ ├── SceneTests.meta │ │ ├── SceneTests │ │ │ ├── TestDestructionOrder.meta │ │ │ ├── TestDestructionOrder │ │ │ │ ├── EmptyScene.unity │ │ │ │ ├── EmptyScene.unity.meta │ │ │ │ ├── FooDisposable1.cs │ │ │ │ ├── FooDisposable1.cs.meta │ │ │ │ ├── FooDisposable2.cs │ │ │ │ ├── FooDisposable2.cs.meta │ │ │ │ ├── FooDisposable3.cs │ │ │ │ ├── FooDisposable3.cs.meta │ │ │ │ ├── FooMonoBehaviourUnderSceneContext1.cs │ │ │ │ ├── FooMonoBehaviourUnderSceneContext1.cs.meta │ │ │ │ ├── FooMonoBehaviourUnderSceneContext2.cs │ │ │ │ ├── FooMonoBehaviourUnderSceneContext2.cs.meta │ │ │ │ ├── FooMonoBehaviourUnderSceneContext3.cs │ │ │ │ ├── FooMonoBehaviourUnderSceneContext3.cs.meta │ │ │ │ ├── ProjectInstaller.cs │ │ │ │ ├── ProjectInstaller.cs.meta │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ReadMe.txt.meta │ │ │ │ ├── RenameThisResources.meta │ │ │ │ ├── RenameThisResources │ │ │ │ │ ├── ProjectContext.prefab │ │ │ │ │ └── ProjectContext.prefab.meta │ │ │ │ ├── Scene1Installer.cs │ │ │ │ ├── Scene1Installer.cs.meta │ │ │ │ ├── Scene2Installer.cs │ │ │ │ ├── Scene2Installer.cs.meta │ │ │ │ ├── TestDestructionOrder1.unity │ │ │ │ ├── TestDestructionOrder1.unity.meta │ │ │ │ ├── TestDestructionOrder2.unity │ │ │ │ └── TestDestructionOrder2.unity.meta │ │ │ ├── TestSceneContextEvents.meta │ │ │ └── TestSceneContextEvents │ │ │ │ ├── SceneContextEventsTester.cs │ │ │ │ ├── SceneContextEventsTester.cs.meta │ │ │ │ ├── TestSceneContextEvents.unity │ │ │ │ ├── TestSceneContextEvents.unity.meta │ │ │ │ ├── TestSceneContextEventsSettings.lighting │ │ │ │ ├── TestSceneContextEventsSettings.lighting.meta │ │ │ │ ├── Tests.meta │ │ │ │ └── Tests │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ ├── SceneTestFixtureSettings.meta │ │ │ │ └── SceneTestFixtureSettings │ │ │ │ ├── TestSceneContextEvents.asset │ │ │ │ └── TestSceneContextEvents.asset.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── Bindings.meta │ │ │ ├── Bindings │ │ │ │ ├── TestDiContainerMethods.meta │ │ │ │ ├── TestDiContainerMethods │ │ │ │ │ ├── TestDiContainerMethods.cs │ │ │ │ │ └── TestDiContainerMethods.cs.meta │ │ │ │ ├── TestFromComponent.meta │ │ │ │ ├── TestFromComponent │ │ │ │ │ ├── TestFromComponentOn.cs │ │ │ │ │ ├── TestFromComponentOn.cs.meta │ │ │ │ │ ├── TestFromNewComponentOn.cs │ │ │ │ │ └── TestFromNewComponentOn.cs.meta │ │ │ │ ├── TestFromComponentInChildren.meta │ │ │ │ ├── TestFromComponentInChildren │ │ │ │ │ ├── TestFromComponentInChildren.cs │ │ │ │ │ └── TestFromComponentInChildren.cs.meta │ │ │ │ ├── TestFromComponentInHierarchy.meta │ │ │ │ ├── TestFromComponentInHierarchy │ │ │ │ │ ├── TestFromComponentInHierarchy.cs │ │ │ │ │ └── TestFromComponentInHierarchy.cs.meta │ │ │ │ ├── TestFromComponentInHierarchyGameObjectContext.meta │ │ │ │ ├── TestFromComponentInHierarchyGameObjectContext │ │ │ │ │ ├── TestFromComponentInHierarchyGameObjectContext.cs │ │ │ │ │ └── TestFromComponentInHierarchyGameObjectContext.cs.meta │ │ │ │ ├── TestFromComponentInParents.meta │ │ │ │ ├── TestFromComponentInParents │ │ │ │ │ ├── TestFromComponentInParents.cs │ │ │ │ │ └── TestFromComponentInParents.cs.meta │ │ │ │ ├── TestFromComponentInSiblings.meta │ │ │ │ ├── TestFromComponentInSiblings │ │ │ │ │ ├── TestFromComponentInSiblings.cs │ │ │ │ │ └── TestFromComponentInSiblings.cs.meta │ │ │ │ ├── TestFromGameObject.meta │ │ │ │ ├── TestFromGameObject │ │ │ │ │ ├── TestFromGameObject.cs │ │ │ │ │ └── TestFromGameObject.cs.meta │ │ │ │ ├── TestFromGameObjectInstaller.meta │ │ │ │ ├── TestFromGameObjectInstaller │ │ │ │ │ ├── TestFromGameObjectInstaller.cs │ │ │ │ │ └── TestFromGameObjectInstaller.cs.meta │ │ │ │ ├── TestFromNewScriptableObjectResource.meta │ │ │ │ ├── TestFromNewScriptableObjectResource │ │ │ │ │ ├── TestFromNewScriptableObjectResource.cs │ │ │ │ │ └── TestFromNewScriptableObjectResource.cs.meta │ │ │ │ ├── TestFromPrefab.meta │ │ │ │ ├── TestFromPrefab │ │ │ │ │ ├── TestFromPrefab.cs │ │ │ │ │ └── TestFromPrefab.cs.meta │ │ │ │ ├── TestFromPrefabInstaller.meta │ │ │ │ ├── TestFromPrefabInstaller │ │ │ │ │ ├── TestFromPrefabInstaller.cs │ │ │ │ │ └── TestFromPrefabInstaller.cs.meta │ │ │ │ ├── TestFromPrefabResource.meta │ │ │ │ ├── TestFromPrefabResource │ │ │ │ │ ├── TestFromPrefabResource.cs │ │ │ │ │ └── TestFromPrefabResource.cs.meta │ │ │ │ ├── TestFromResource.meta │ │ │ │ ├── TestFromResource │ │ │ │ │ ├── TestFromResource.cs │ │ │ │ │ └── TestFromResource.cs.meta │ │ │ │ ├── TestFromSiblingComponent.meta │ │ │ │ ├── TestFromSiblingComponent │ │ │ │ │ ├── TestFromSiblingComponent.cs │ │ │ │ │ └── TestFromSiblingComponent.cs.meta │ │ │ │ ├── TestFromSubContainerPrefab.meta │ │ │ │ ├── TestFromSubContainerPrefab │ │ │ │ │ ├── TestFromSubContainerPrefab.cs │ │ │ │ │ └── TestFromSubContainerPrefab.cs.meta │ │ │ │ ├── TestFromSubContainerPrefabResource.meta │ │ │ │ ├── TestFromSubContainerPrefabResource │ │ │ │ │ ├── TestFromSubContainerPrefabResource.cs │ │ │ │ │ └── TestFromSubContainerPrefabResource.cs.meta │ │ │ │ ├── TestInstantiateCallback.meta │ │ │ │ ├── TestInstantiateCallback │ │ │ │ │ ├── TestInstantiateCallback.cs │ │ │ │ │ └── TestInstantiateCallback.cs.meta │ │ │ │ ├── TestLazy.meta │ │ │ │ └── TestLazy │ │ │ │ │ ├── TestLazy.cs │ │ │ │ │ └── TestLazy.cs.meta │ │ │ ├── Factories.meta │ │ │ ├── Factories │ │ │ │ ├── PrefabFactory.meta │ │ │ │ ├── PrefabFactory │ │ │ │ │ ├── TestPrefabFactory.cs │ │ │ │ │ └── TestPrefabFactory.cs.meta │ │ │ │ ├── TestBindFactory.meta │ │ │ │ ├── TestBindFactory │ │ │ │ │ ├── TestBindFactory.cs │ │ │ │ │ └── TestBindFactory.cs.meta │ │ │ │ ├── TestBindFactoryFive.meta │ │ │ │ ├── TestBindFactoryFive │ │ │ │ │ ├── TestBindFactoryFive.cs │ │ │ │ │ └── TestBindFactoryFive.cs.meta │ │ │ │ ├── TestBindFactoryOne.meta │ │ │ │ ├── TestBindFactoryOne │ │ │ │ │ ├── TestBindFactoryOne.cs │ │ │ │ │ └── TestBindFactoryOne.cs.meta │ │ │ │ ├── TestMemoryPools.meta │ │ │ │ └── TestMemoryPools │ │ │ │ │ ├── TestMemoryPool1.cs │ │ │ │ │ └── TestMemoryPool1.cs.meta │ │ │ ├── Installers.meta │ │ │ ├── Installers │ │ │ │ ├── TestInstallers.meta │ │ │ │ ├── TestInstallers │ │ │ │ │ ├── TestInstallers.cs │ │ │ │ │ └── TestInstallers.cs.meta │ │ │ │ ├── TestMonoInstallers.meta │ │ │ │ ├── TestMonoInstallers │ │ │ │ │ ├── TestMonoInstallers.cs │ │ │ │ │ └── TestMonoInstallers.cs.meta │ │ │ │ ├── TestScriptableObjectInstallers.meta │ │ │ │ └── TestScriptableObjectInstallers │ │ │ │ │ ├── TestScriptableObjectInstallers.cs │ │ │ │ │ └── TestScriptableObjectInstallers.cs.meta │ │ │ ├── IntegrationTestTester.meta │ │ │ ├── IntegrationTestTester │ │ │ │ ├── TestIntegrationTest.cs │ │ │ │ └── TestIntegrationTest.cs.meta │ │ │ ├── Misc.meta │ │ │ ├── Misc │ │ │ │ ├── TestAnimationStateBehaviourInject.meta │ │ │ │ ├── TestAnimationStateBehaviourInject │ │ │ │ │ ├── TestAnimationStateBehaviourInject.cs │ │ │ │ │ └── TestAnimationStateBehaviourInject.cs.meta │ │ │ │ ├── TestMonoKernelDecoration.meta │ │ │ │ ├── TestMonoKernelDecoration │ │ │ │ │ ├── DelayedInitializeKernel.cs │ │ │ │ │ ├── DelayedInitializeKernel.cs.meta │ │ │ │ │ ├── KernelDecoratorInstaller.cs │ │ │ │ │ ├── KernelDecoratorInstaller.cs.meta │ │ │ │ │ ├── TestMonoKernelDecoration.cs │ │ │ │ │ └── TestMonoKernelDecoration.cs.meta │ │ │ │ ├── TestZenAutoInjecter.meta │ │ │ │ └── TestZenAutoInjecter │ │ │ │ │ ├── TestZenAutoInjecter.cs │ │ │ │ │ └── TestZenAutoInjecter.cs.meta │ │ │ ├── SceneTests.meta │ │ │ ├── SceneTests │ │ │ │ ├── TestSceneContextEvents.cs │ │ │ │ └── TestSceneContextEvents.cs.meta │ │ │ ├── Util.meta │ │ │ ├── Util │ │ │ │ ├── FixtureUtil.cs │ │ │ │ └── FixtureUtil.cs.meta │ │ │ ├── Zenject-IntegrationTests-Editor.asmdef │ │ │ └── Zenject-IntegrationTests-Editor.asmdef.meta │ │ ├── Zenject-IntegrationTests.asmdef │ │ └── Zenject-IntegrationTests.asmdef.meta │ ├── MemoryPoolMonitor.meta │ ├── MemoryPoolMonitor │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── DebugWindow.meta │ │ │ ├── DebugWindow │ │ │ ├── InPlaceStableSort.cs │ │ │ ├── InPlaceStableSort.cs.meta │ │ │ ├── MpmView.cs │ │ │ ├── MpmView.cs.meta │ │ │ ├── MpmWindow.cs │ │ │ └── MpmWindow.cs.meta │ │ │ ├── MpmSettingsInstaller.cs │ │ │ ├── MpmSettingsInstaller.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ ├── Installers.meta │ │ │ └── Installers │ │ │ │ ├── MpmSettingsInstaller.asset │ │ │ │ └── MpmSettingsInstaller.asset.meta │ │ │ ├── TriangleDown.png │ │ │ ├── TriangleDown.png.meta │ │ │ ├── TriangleUp.png │ │ │ ├── TriangleUp.png.meta │ │ │ ├── Zenject-PoolMonitor-Editor.asmdef │ │ │ └── Zenject-PoolMonitor-Editor.asmdef.meta │ ├── ReflectionBaking.meta │ ├── ReflectionBaking │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── CecilExtensions.cs │ │ │ ├── CecilExtensions.cs.meta │ │ │ ├── ReflectionBakingModuleEditor.cs │ │ │ └── ReflectionBakingModuleEditor.cs.meta │ │ ├── Lib.meta │ │ ├── Lib │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll.meta │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll.meta │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll.meta │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.dll │ │ │ └── Zenject.ReflectionBaking.Mono.Cecil.dll.meta │ │ ├── Unity.meta │ │ ├── Unity │ │ │ ├── AssemblyPathRegistry.cs │ │ │ ├── AssemblyPathRegistry.cs.meta │ │ │ ├── ReflectionBakingBuildObserver.cs │ │ │ ├── ReflectionBakingBuildObserver.cs.meta │ │ │ ├── ReflectionBakingInternalUtil.cs │ │ │ ├── ReflectionBakingInternalUtil.cs.meta │ │ │ ├── ReflectionBakingMenuItems.cs │ │ │ ├── ReflectionBakingMenuItems.cs.meta │ │ │ ├── UnityAssemblyResolver.cs │ │ │ ├── UnityAssemblyResolver.cs.meta │ │ │ ├── ZenjectReflectionBakingSettings.cs │ │ │ ├── ZenjectReflectionBakingSettings.cs.meta │ │ │ ├── ZenjectReflectionBakingSettingsEditor.cs │ │ │ └── ZenjectReflectionBakingSettingsEditor.cs.meta │ │ ├── Zenject-ReflectionBaking-Editor.asmdef │ │ └── Zenject-ReflectionBaking-Editor.asmdef.meta │ ├── Signals.meta │ ├── Signals │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── Binders.meta │ │ │ ├── Binders │ │ │ │ ├── BindSignal.meta │ │ │ │ ├── BindSignal │ │ │ │ │ ├── BindSignalFromBinder.cs │ │ │ │ │ ├── BindSignalFromBinder.cs.meta │ │ │ │ │ ├── BindSignalIdToBinder.cs │ │ │ │ │ ├── BindSignalIdToBinder.cs.meta │ │ │ │ │ ├── BindSignalToBinder.cs │ │ │ │ │ ├── BindSignalToBinder.cs.meta │ │ │ │ │ ├── SignalCallbackWithLookupWrapper.cs │ │ │ │ │ ├── SignalCallbackWithLookupWrapper.cs.meta │ │ │ │ │ ├── SignalCallbackWrapper.cs │ │ │ │ │ └── SignalCallbackWrapper.cs.meta │ │ │ │ ├── DeclareSignal.meta │ │ │ │ ├── DeclareSignal │ │ │ │ │ ├── DeclareSignalAsyncTickPriorityCopyBinder.cs │ │ │ │ │ ├── DeclareSignalAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ ├── DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs │ │ │ │ │ ├── DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ ├── DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs │ │ │ │ │ ├── DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs.meta │ │ │ │ │ ├── SignalBindingBindInfo.cs │ │ │ │ │ ├── SignalBindingBindInfo.cs.meta │ │ │ │ │ ├── SignalDeclarationBindInfo.cs │ │ │ │ │ └── SignalDeclarationBindInfo.cs.meta │ │ │ │ ├── SignalCopyBinder.cs │ │ │ │ ├── SignalCopyBinder.cs.meta │ │ │ │ ├── SignalExtensions.cs │ │ │ │ ├── SignalExtensions.cs.meta │ │ │ │ ├── SignalTickPriorityCopyBinder.cs │ │ │ │ └── SignalTickPriorityCopyBinder.cs.meta │ │ │ ├── SignalDeclaration.cs │ │ │ ├── SignalDeclaration.cs.meta │ │ │ ├── SignalSubscription.cs │ │ │ ├── SignalSubscription.cs.meta │ │ │ ├── SignalSubscriptionId.cs │ │ │ └── SignalSubscriptionId.cs.meta │ │ ├── Main.meta │ │ ├── Main │ │ │ ├── SignalBus.cs │ │ │ ├── SignalBus.cs.meta │ │ │ ├── SignalBusInstaller.cs │ │ │ ├── SignalBusInstaller.cs.meta │ │ │ ├── SignalDeclarationAsyncInitializer.cs │ │ │ └── SignalDeclarationAsyncInitializer.cs.meta │ │ ├── Zenject-Signals.asmdef │ │ └── Zenject-Signals.asmdef.meta │ ├── TestFramework.meta │ ├── TestFramework │ │ ├── SceneTestFixture.cs │ │ ├── SceneTestFixture.cs.meta │ │ ├── SceneTestFixtureSceneReference.cs │ │ ├── SceneTestFixtureSceneReference.cs.meta │ │ ├── ValidateOnlyAttribute.cs │ │ ├── ValidateOnlyAttribute.cs.meta │ │ ├── Zenject-TestFramework.asmdef │ │ ├── Zenject-TestFramework.asmdef.meta │ │ ├── ZenjectIntegrationTestFixture.cs │ │ ├── ZenjectIntegrationTestFixture.cs.meta │ │ ├── ZenjectTestUtil.cs │ │ ├── ZenjectTestUtil.cs.meta │ │ ├── ZenjectUnitTestFixture.cs │ │ └── ZenjectUnitTestFixture.cs.meta │ ├── UnitTests.meta │ └── UnitTests │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── BindFeatures.meta │ │ ├── BindFeatures │ │ │ ├── TestBindingInheritanceMethod.cs │ │ │ ├── TestBindingInheritanceMethod.cs.meta │ │ │ ├── TestConcreteIdentifier.cs │ │ │ ├── TestConcreteIdentifier.cs.meta │ │ │ ├── TestIfNotBound.cs │ │ │ ├── TestIfNotBound.cs.meta │ │ │ ├── TestMoveIntoAllSubContainers.cs │ │ │ ├── TestMoveIntoAllSubContainers.cs.meta │ │ │ ├── TestMoveIntoDirectSubContainers.cs │ │ │ ├── TestMoveIntoDirectSubContainers.cs.meta │ │ │ ├── TestMultipleContractTypes.cs │ │ │ ├── TestMultipleContractTypes.cs.meta │ │ │ ├── TestMultipleContractTypes2.cs │ │ │ ├── TestMultipleContractTypes2.cs.meta │ │ │ ├── TestMultipleContractTypes3.cs │ │ │ ├── TestMultipleContractTypes3.cs.meta │ │ │ ├── TestNonLazy.cs │ │ │ ├── TestNonLazy.cs.meta │ │ │ ├── TestRebind.cs │ │ │ ├── TestRebind.cs.meta │ │ │ ├── TestUnbind.cs │ │ │ ├── TestUnbind.cs.meta │ │ │ ├── TestWithArguments.cs │ │ │ └── TestWithArguments.cs.meta │ │ ├── Bindings.meta │ │ ├── Bindings │ │ │ ├── TestFrom.cs │ │ │ ├── TestFrom.cs.meta │ │ │ ├── TestFromFactory.cs │ │ │ ├── TestFromFactory.cs.meta │ │ │ ├── TestFromGetter.cs │ │ │ ├── TestFromGetter.cs.meta │ │ │ ├── TestFromIFactory.cs │ │ │ ├── TestFromIFactory.cs.meta │ │ │ ├── TestFromIFactory2.cs │ │ │ ├── TestFromIFactory2.cs.meta │ │ │ ├── TestFromInstance.cs │ │ │ ├── TestFromInstance.cs.meta │ │ │ ├── TestFromMethod.cs │ │ │ ├── TestFromMethod.cs.meta │ │ │ ├── TestFromMethodMultiple.cs │ │ │ ├── TestFromMethodMultiple.cs.meta │ │ │ ├── TestFromMethodMultipleUntyped.cs │ │ │ ├── TestFromMethodMultipleUntyped.cs.meta │ │ │ ├── TestFromResolve.cs │ │ │ ├── TestFromResolve.cs.meta │ │ │ ├── TestFromSubContainerInstaller.cs │ │ │ ├── TestFromSubContainerInstaller.cs.meta │ │ │ ├── TestFromSubContainerInstance.cs │ │ │ ├── TestFromSubContainerInstance.cs.meta │ │ │ ├── TestFromSubContainerInstanceGetter.cs │ │ │ ├── TestFromSubContainerInstanceGetter.cs.meta │ │ │ ├── TestFromSubContainerMethod.cs │ │ │ ├── TestFromSubContainerMethod.cs.meta │ │ │ ├── TestNonGeneric.cs │ │ │ ├── TestNonGeneric.cs.meta │ │ │ ├── TestWithKernel.cs │ │ │ └── TestWithKernel.cs.meta │ │ ├── Conditions.meta │ │ ├── Conditions │ │ │ ├── TestConditionsBasic.cs │ │ │ ├── TestConditionsBasic.cs.meta │ │ │ ├── TestConditionsComplex.cs │ │ │ ├── TestConditionsComplex.cs.meta │ │ │ ├── TestConditionsFieldName.cs │ │ │ ├── TestConditionsFieldName.cs.meta │ │ │ ├── TestConditionsIdentifier.cs │ │ │ ├── TestConditionsIdentifier.cs.meta │ │ │ ├── TestConditionsParents.cs │ │ │ ├── TestConditionsParents.cs.meta │ │ │ ├── TestConditionsTarget.cs │ │ │ ├── TestConditionsTarget.cs.meta │ │ │ ├── TestConditionsTargetInstance.cs │ │ │ ├── TestConditionsTargetInstance.cs.meta │ │ │ ├── TestIdentifierTypes.cs │ │ │ ├── TestIdentifierTypes.cs.meta │ │ │ ├── TestIdentifiers.cs │ │ │ └── TestIdentifiers.cs.meta │ │ ├── Conventions.meta │ │ ├── Conventions │ │ │ ├── Foo.cs │ │ │ ├── Foo.cs.meta │ │ │ ├── FooMore.cs │ │ │ ├── FooMore.cs.meta │ │ │ ├── TestConvention.cs │ │ │ ├── TestConvention.cs.meta │ │ │ ├── TestConvention2.cs │ │ │ ├── TestConvention2.cs.meta │ │ │ ├── TestConventionNames.cs │ │ │ └── TestConventionNames.cs.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── Bindings.meta │ │ │ ├── Bindings │ │ │ │ ├── TestFactoryFrom0.cs │ │ │ │ ├── TestFactoryFrom0.cs.meta │ │ │ │ ├── TestFactoryFrom1.cs │ │ │ │ ├── TestFactoryFrom1.cs.meta │ │ │ │ ├── TestFactoryFrom5.cs │ │ │ │ ├── TestFactoryFrom5.cs.meta │ │ │ │ ├── TestFactoryFromFactory0.cs │ │ │ │ ├── TestFactoryFromFactory0.cs.meta │ │ │ │ ├── TestFactoryFromFactory1.cs │ │ │ │ ├── TestFactoryFromFactory1.cs.meta │ │ │ │ ├── TestFactoryFromGetter0.cs │ │ │ │ ├── TestFactoryFromGetter0.cs.meta │ │ │ │ ├── TestFactoryFromInstance0.cs │ │ │ │ ├── TestFactoryFromInstance0.cs.meta │ │ │ │ ├── TestFactoryFromMethod0.cs │ │ │ │ ├── TestFactoryFromMethod0.cs.meta │ │ │ │ ├── TestFactoryFromMethod1.cs │ │ │ │ ├── TestFactoryFromMethod1.cs.meta │ │ │ │ ├── TestFactoryFromResolve0.cs │ │ │ │ ├── TestFactoryFromResolve0.cs.meta │ │ │ │ ├── TestFactoryFromSubContainerInstaller0.cs │ │ │ │ ├── TestFactoryFromSubContainerInstaller0.cs.meta │ │ │ │ ├── TestFactoryFromSubContainerInstaller1.cs │ │ │ │ ├── TestFactoryFromSubContainerInstaller1.cs.meta │ │ │ │ ├── TestFactoryFromSubContainerMethod0.cs │ │ │ │ ├── TestFactoryFromSubContainerMethod0.cs.meta │ │ │ │ ├── TestFactoryFromSubContainerMethod1.cs │ │ │ │ ├── TestFactoryFromSubContainerMethod1.cs.meta │ │ │ │ ├── TestFactoryWithArguments.cs │ │ │ │ └── TestFactoryWithArguments.cs.meta │ │ │ ├── IFactory.meta │ │ │ ├── IFactory │ │ │ │ ├── TestIFactory.cs │ │ │ │ └── TestIFactory.cs.meta │ │ │ ├── TestFactory.cs │ │ │ └── TestFactory.cs.meta │ │ ├── Injection.meta │ │ ├── Injection │ │ │ ├── TestAllInjectionTypes.cs │ │ │ ├── TestAllInjectionTypes.cs.meta │ │ │ ├── TestBaseClassPropertyInjection.cs │ │ │ ├── TestBaseClassPropertyInjection.cs.meta │ │ │ ├── TestCircularDependencies.cs │ │ │ ├── TestCircularDependencies.cs.meta │ │ │ ├── TestConstructorInjection.cs │ │ │ ├── TestConstructorInjection.cs.meta │ │ │ ├── TestConstructorInjectionOptional.cs │ │ │ ├── TestConstructorInjectionOptional.cs.meta │ │ │ ├── TestDuplicateInjection.cs │ │ │ ├── TestDuplicateInjection.cs.meta │ │ │ ├── TestInjectSources.cs │ │ │ ├── TestInjectSources.cs.meta │ │ │ ├── TestListInjection.cs │ │ │ ├── TestListInjection.cs.meta │ │ │ ├── TestNullableValues.cs │ │ │ ├── TestNullableValues.cs.meta │ │ │ ├── TestParameters.cs │ │ │ ├── TestParameters.cs.meta │ │ │ ├── TestPostInjectCall.cs │ │ │ ├── TestPostInjectCall.cs.meta │ │ │ ├── TestPostInjectParameters.cs │ │ │ ├── TestPostInjectParameters.cs.meta │ │ │ ├── TestPropertyInjection.cs │ │ │ ├── TestPropertyInjection.cs.meta │ │ │ ├── TestStructInjection.cs │ │ │ ├── TestStructInjection.cs.meta │ │ │ ├── TestTestOptional.cs │ │ │ └── TestTestOptional.cs.meta │ │ ├── MemoryPool.meta │ │ ├── MemoryPool │ │ │ ├── TestArrayPool.cs │ │ │ ├── TestArrayPool.cs.meta │ │ │ ├── TestDisposeBlock.cs │ │ │ ├── TestDisposeBlock.cs.meta │ │ │ ├── TestFromPoolableMemoryPoolOne.cs │ │ │ ├── TestFromPoolableMemoryPoolOne.cs.meta │ │ │ ├── TestFromPoolableMemoryPoolSix.cs │ │ │ ├── TestFromPoolableMemoryPoolSix.cs.meta │ │ │ ├── TestFromPoolableMemoryPoolValidation.cs │ │ │ ├── TestFromPoolableMemoryPoolValidation.cs.meta │ │ │ ├── TestFromPoolableMemoryPoolZero.cs │ │ │ ├── TestFromPoolableMemoryPoolZero.cs.meta │ │ │ ├── TestMemoryPool0.cs │ │ │ ├── TestMemoryPool0.cs.meta │ │ │ ├── TestMemoryPoolCustomFactory.cs │ │ │ ├── TestMemoryPoolCustomFactory.cs.meta │ │ │ ├── TestPoolableStaticMemoryPool.cs │ │ │ ├── TestPoolableStaticMemoryPool.cs.meta │ │ │ ├── TestStaticMemoryPool.cs │ │ │ └── TestStaticMemoryPool.cs.meta │ │ ├── Other.meta │ │ ├── Other │ │ │ ├── TestAllocs.cs │ │ │ ├── TestAllocs.cs.meta │ │ │ ├── TestAsSingle.cs │ │ │ ├── TestAsSingle.cs.meta │ │ │ ├── TestBindCallbacks.cs │ │ │ ├── TestBindCallbacks.cs.meta │ │ │ ├── TestCircularDependencies.cs │ │ │ ├── TestCircularDependencies.cs.meta │ │ │ ├── TestClearCacheProvider.cs │ │ │ ├── TestClearCacheProvider.cs.meta │ │ │ ├── TestCustomInjectAttribute.cs │ │ │ ├── TestCustomInjectAttribute.cs.meta │ │ │ ├── TestDecoratorValidation.cs │ │ │ ├── TestDecoratorValidation.cs.meta │ │ │ ├── TestDecorators.cs │ │ │ ├── TestDecorators.cs.meta │ │ │ ├── TestFacadeSubContainer.cs │ │ │ ├── TestFacadeSubContainer.cs.meta │ │ │ ├── TestFactoryMemoryPoolCustomInterface.cs │ │ │ ├── TestFactoryMemoryPoolCustomInterface.cs.meta │ │ │ ├── TestGenericContract.cs │ │ │ ├── TestGenericContract.cs.meta │ │ │ ├── TestKeyedFactoryExample.cs │ │ │ ├── TestKeyedFactoryExample.cs.meta │ │ │ ├── TestLazy.cs │ │ │ ├── TestLazy.cs.meta │ │ │ ├── TestNestedContainer.cs │ │ │ ├── TestNestedContainer.cs.meta │ │ │ ├── TestPoolableManager.cs │ │ │ ├── TestPoolableManager.cs.meta │ │ │ ├── TestResolve.cs │ │ │ ├── TestResolve.cs.meta │ │ │ ├── TestResolveMany.cs │ │ │ ├── TestResolveMany.cs.meta │ │ │ ├── TestSubContainers.cs │ │ │ ├── TestSubContainers.cs.meta │ │ │ ├── TestSubContainers4.cs │ │ │ ├── TestSubContainers4.cs.meta │ │ │ ├── TestTaskUpdater.cs │ │ │ ├── TestTaskUpdater.cs.meta │ │ │ ├── TestTestUtil.cs │ │ │ ├── TestTestUtil.cs.meta │ │ │ ├── TestTransientMockProvider.cs │ │ │ ├── TestTransientMockProvider.cs.meta │ │ │ ├── TestValidation.cs │ │ │ ├── TestValidation.cs.meta │ │ │ ├── TestValidationSettings.cs │ │ │ ├── TestValidationSettings.cs.meta │ │ │ ├── ZenjectProfileTest.cs │ │ │ └── ZenjectProfileTest.cs.meta │ │ ├── Profiling.meta │ │ ├── Profiling │ │ │ ├── TestInstantiateApproaches.cs │ │ │ └── TestInstantiateApproaches.cs.meta │ │ ├── Signals.meta │ │ ├── Signals │ │ │ ├── TestAsyncSignals.cs │ │ │ ├── TestAsyncSignals.cs.meta │ │ │ ├── TestBindSignal.cs │ │ │ ├── TestBindSignal.cs.meta │ │ │ ├── TestSignalIdentifiers.cs │ │ │ ├── TestSignalIdentifiers.cs.meta │ │ │ ├── TestSignalRuntimeDeclaration.cs │ │ │ ├── TestSignalRuntimeDeclaration.cs.meta │ │ │ ├── TestSignals1.cs │ │ │ ├── TestSignals1.cs.meta │ │ │ ├── TestSignalsAdvanced.cs │ │ │ └── TestSignalsAdvanced.cs.meta │ │ ├── Util.meta │ │ ├── Util │ │ │ ├── TestListComparer.cs │ │ │ └── TestListComparer.cs.meta │ │ ├── Zenject-UnitTests-Editor.asmdef │ │ └── Zenject-UnitTests-Editor.asmdef.meta │ │ ├── ReadMe.txt │ │ └── ReadMe.txt.meta │ ├── ReadMe.url │ ├── ReadMe.url.meta │ ├── Source.meta │ ├── Source │ ├── Binding.meta │ ├── Binding │ │ ├── BindInfo.meta │ │ ├── BindInfo │ │ │ ├── BindInfo.cs │ │ │ ├── BindInfo.cs.meta │ │ │ ├── BindStatement.cs │ │ │ ├── BindStatement.cs.meta │ │ │ ├── FactoryBindInfo.cs │ │ │ ├── FactoryBindInfo.cs.meta │ │ │ ├── GameObjectCreationParameters.cs │ │ │ ├── GameObjectCreationParameters.cs.meta │ │ │ ├── MemoryPoolBindInfo.cs │ │ │ └── MemoryPoolBindInfo.cs.meta │ │ ├── Binders.meta │ │ ├── Binders │ │ │ ├── ArgConditionCopyNonLazyBinder.cs │ │ │ ├── ArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── ConcreteBinders.meta │ │ │ ├── ConcreteBinders │ │ │ │ ├── ConcreteBinderGeneric.cs │ │ │ │ ├── ConcreteBinderGeneric.cs.meta │ │ │ │ ├── ConcreteBinderNonGeneric.cs │ │ │ │ ├── ConcreteBinderNonGeneric.cs.meta │ │ │ │ ├── ConcreteIdBinderGeneric.cs │ │ │ │ ├── ConcreteIdBinderGeneric.cs.meta │ │ │ │ ├── ConcreteIdBinderNonGeneric.cs │ │ │ │ └── ConcreteIdBinderNonGeneric.cs.meta │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── ConditionCopyNonLazyBinder.cs │ │ │ ├── ConditionCopyNonLazyBinder.cs.meta │ │ │ ├── Conventions.meta │ │ │ ├── Conventions │ │ │ │ ├── ConventionAssemblySelectionBinder.cs │ │ │ │ ├── ConventionAssemblySelectionBinder.cs.meta │ │ │ │ ├── ConventionBindInfo.cs │ │ │ │ ├── ConventionBindInfo.cs.meta │ │ │ │ ├── ConventionFilterTypesBinder.cs │ │ │ │ ├── ConventionFilterTypesBinder.cs.meta │ │ │ │ ├── ConventionSelectTypesBinder.cs │ │ │ │ └── ConventionSelectTypesBinder.cs.meta │ │ │ ├── CopyNonLazyBinder.cs │ │ │ ├── CopyNonLazyBinder.cs.meta │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── Factory.meta │ │ │ ├── Factory │ │ │ │ ├── FactoryArgumentsToChoiceBinder.meta │ │ │ │ ├── FactoryArgumentsToChoiceBinder │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder6.cs │ │ │ │ │ └── FactoryArgumentsToChoiceBinder6.cs.meta │ │ │ │ ├── FactoryFromBinder.meta │ │ │ │ ├── FactoryFromBinder │ │ │ │ │ ├── FactoryFromBinder0.cs │ │ │ │ │ ├── FactoryFromBinder0.cs.meta │ │ │ │ │ ├── FactoryFromBinder1.cs │ │ │ │ │ ├── FactoryFromBinder1.cs.meta │ │ │ │ │ ├── FactoryFromBinder10.cs │ │ │ │ │ ├── FactoryFromBinder10.cs.meta │ │ │ │ │ ├── FactoryFromBinder2.cs │ │ │ │ │ ├── FactoryFromBinder2.cs.meta │ │ │ │ │ ├── FactoryFromBinder3.cs │ │ │ │ │ ├── FactoryFromBinder3.cs.meta │ │ │ │ │ ├── FactoryFromBinder4.cs │ │ │ │ │ ├── FactoryFromBinder4.cs.meta │ │ │ │ │ ├── FactoryFromBinder5.cs │ │ │ │ │ ├── FactoryFromBinder5.cs.meta │ │ │ │ │ ├── FactoryFromBinder6.cs │ │ │ │ │ ├── FactoryFromBinder6.cs.meta │ │ │ │ │ ├── SubContainerBinder.meta │ │ │ │ │ ├── SubContainerBinder │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs.meta │ │ │ │ │ │ ├── FactorySubContainerBinderWithParams.cs │ │ │ │ │ │ └── FactorySubContainerBinderWithParams.cs.meta │ │ │ │ │ ├── Untyped.meta │ │ │ │ │ └── Untyped │ │ │ │ │ │ ├── FactoryFromBinderUntyped.cs │ │ │ │ │ │ └── FactoryFromBinderUntyped.cs.meta │ │ │ │ ├── FactoryFromBinderBase.cs │ │ │ │ ├── FactoryFromBinderBase.cs.meta │ │ │ │ ├── FactoryToChoiceBinder.meta │ │ │ │ ├── FactoryToChoiceBinder │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder0.cs │ │ │ │ │ ├── FactoryToChoiceBinder0.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder1.cs │ │ │ │ │ ├── FactoryToChoiceBinder1.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder10.cs │ │ │ │ │ ├── FactoryToChoiceBinder10.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder2.cs │ │ │ │ │ ├── FactoryToChoiceBinder2.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder3.cs │ │ │ │ │ ├── FactoryToChoiceBinder3.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder4.cs │ │ │ │ │ ├── FactoryToChoiceBinder4.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder5.cs │ │ │ │ │ ├── FactoryToChoiceBinder5.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder6.cs │ │ │ │ │ └── FactoryToChoiceBinder6.cs.meta │ │ │ │ ├── FactoryToChoiceIdBinder.meta │ │ │ │ ├── FactoryToChoiceIdBinder │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder6.cs │ │ │ │ │ └── FactoryToChoiceIdBinder6.cs.meta │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs.meta │ │ │ │ ├── Pooling.meta │ │ │ │ └── Pooling │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs.meta │ │ │ │ │ ├── MemoryPoolExpandBinder.cs │ │ │ │ │ ├── MemoryPoolExpandBinder.cs.meta │ │ │ │ │ ├── MemoryPoolInitialSizeBinder.cs │ │ │ │ │ └── MemoryPoolInitialSizeBinder.cs.meta │ │ │ ├── FromBinders.meta │ │ │ ├── FromBinders │ │ │ │ ├── FromBinder.cs │ │ │ │ ├── FromBinder.cs.meta │ │ │ │ ├── FromBinderGeneric.cs │ │ │ │ ├── FromBinderGeneric.cs.meta │ │ │ │ ├── FromBinderNonGeneric.cs │ │ │ │ └── FromBinderNonGeneric.cs.meta │ │ │ ├── GameObject.meta │ │ │ ├── GameObject │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ └── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── IdBinder.cs │ │ │ ├── IdBinder.cs.meta │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── IfNotBoundBinder.cs │ │ │ ├── IfNotBoundBinder.cs.meta │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs.meta │ │ │ ├── NonLazyBinder.cs │ │ │ ├── NonLazyBinder.cs.meta │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── SubContainerBinder.cs │ │ │ ├── SubContainerBinder.cs.meta │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ └── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ ├── BindingUtil.cs │ │ ├── BindingUtil.cs.meta │ │ ├── Finalizers.meta │ │ └── Finalizers │ │ │ ├── IBindingFinalizer.cs │ │ │ ├── IBindingFinalizer.cs.meta │ │ │ ├── NullBindingFinalizer.cs │ │ │ ├── NullBindingFinalizer.cs.meta │ │ │ ├── PrefabBindingFinalizer.cs │ │ │ ├── PrefabBindingFinalizer.cs.meta │ │ │ ├── PrefabResourceBindingFinalizer.cs │ │ │ ├── PrefabResourceBindingFinalizer.cs.meta │ │ │ ├── ProviderBindingFinalizer.cs │ │ │ ├── ProviderBindingFinalizer.cs.meta │ │ │ ├── ScopableBindingFinalizer.cs │ │ │ ├── ScopableBindingFinalizer.cs.meta │ │ │ ├── SingleProviderBindingFinalizer.cs │ │ │ ├── SingleProviderBindingFinalizer.cs.meta │ │ │ ├── SubContainerBindingFinalizer.cs │ │ │ ├── SubContainerBindingFinalizer.cs.meta │ │ │ ├── SubContainerPrefabBindingFinalizer.cs │ │ │ └── SubContainerPrefabBindingFinalizer.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── EditorStaticInstaller.cs │ │ ├── EditorStaticInstaller.cs.meta │ │ ├── EditorWindow.meta │ │ ├── EditorWindow │ │ │ ├── ZenjectEditorWindow.cs │ │ │ └── ZenjectEditorWindow.cs.meta │ │ ├── Editors.meta │ │ ├── Editors │ │ │ ├── ContextEditor.cs │ │ │ ├── ContextEditor.cs.meta │ │ │ ├── GameObjectContextEditor.cs │ │ │ ├── GameObjectContextEditor.cs.meta │ │ │ ├── ProjectContextEditor.cs │ │ │ ├── ProjectContextEditor.cs.meta │ │ │ ├── RunnableContextEditor.cs │ │ │ ├── RunnableContextEditor.cs.meta │ │ │ ├── SceneContextEditor.cs │ │ │ ├── SceneContextEditor.cs.meta │ │ │ ├── SceneDecoratorContextEditor.cs │ │ │ └── SceneDecoratorContextEditor.cs.meta │ │ ├── ObjectGraphVisualizer.cs │ │ ├── ObjectGraphVisualizer.cs.meta │ │ ├── SceneParentLoading.meta │ │ ├── SceneParentLoading │ │ │ ├── DefaultSceneContractConfig.cs │ │ │ ├── DefaultSceneContractConfig.cs.meta │ │ │ ├── SceneParentAutomaticLoader.cs │ │ │ └── SceneParentAutomaticLoader.cs.meta │ │ ├── UnityInspectorListEditor.cs │ │ ├── UnityInspectorListEditor.cs.meta │ │ ├── ZenMenuItems.cs │ │ ├── ZenMenuItems.cs.meta │ │ ├── ZenUnityEditorUtil.cs │ │ ├── ZenUnityEditorUtil.cs.meta │ │ ├── Zenject-Editor.asmdef │ │ └── Zenject-Editor.asmdef.meta │ ├── Factories.meta │ ├── Factories │ │ ├── FactoryProviderWrapper.cs │ │ ├── FactoryProviderWrapper.cs.meta │ │ ├── IFactory.cs │ │ ├── IFactory.cs.meta │ │ ├── KeyedFactory.cs │ │ ├── KeyedFactory.cs.meta │ │ ├── PlaceholderFactory.cs │ │ ├── PlaceholderFactory.cs.meta │ │ ├── PlaceholderFactoryBase.cs │ │ ├── PlaceholderFactoryBase.cs.meta │ │ ├── Pooling.meta │ │ ├── Pooling │ │ │ ├── IMemoryPool.cs │ │ │ ├── IMemoryPool.cs.meta │ │ │ ├── MemoryPool.cs │ │ │ ├── MemoryPool.cs.meta │ │ │ ├── MemoryPoolBase.cs │ │ │ ├── MemoryPoolBase.cs.meta │ │ │ ├── MonoMemoryPool.cs │ │ │ ├── MonoMemoryPool.cs.meta │ │ │ ├── MonoPoolableMemoryPool.cs │ │ │ ├── MonoPoolableMemoryPool.cs.meta │ │ │ ├── PoolFactory.cs │ │ │ ├── PoolFactory.cs.meta │ │ │ ├── PoolableMemoryPool.cs │ │ │ ├── PoolableMemoryPool.cs.meta │ │ │ ├── Static.meta │ │ │ ├── Static │ │ │ │ ├── PoolableStaticMemoryPool.cs │ │ │ │ ├── PoolableStaticMemoryPool.cs.meta │ │ │ │ ├── StaticMemoryPool.cs │ │ │ │ └── StaticMemoryPool.cs.meta │ │ │ ├── Util.meta │ │ │ └── Util │ │ │ │ ├── ArrayPool.cs │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ ├── DictionaryPool.cs │ │ │ │ ├── DictionaryPool.cs.meta │ │ │ │ ├── HashSetPool.cs │ │ │ │ ├── HashSetPool.cs.meta │ │ │ │ ├── ListPool.cs │ │ │ │ ├── ListPool.cs.meta │ │ │ │ ├── PoolCleanupChecker.cs │ │ │ │ ├── PoolCleanupChecker.cs.meta │ │ │ │ ├── StaticMemoryPoolRegistry.cs │ │ │ │ └── StaticMemoryPoolRegistry.cs.meta │ │ ├── PrefabFactory.cs │ │ ├── PrefabFactory.cs.meta │ │ ├── PrefabResourceFactory.cs │ │ └── PrefabResourceFactory.cs.meta │ ├── Injection.meta │ ├── Injection │ │ ├── InjectContext.cs │ │ ├── InjectContext.cs.meta │ │ ├── InjectUtil.cs │ │ ├── InjectUtil.cs.meta │ │ ├── LazyInject.cs │ │ └── LazyInject.cs.meta │ ├── Install.meta │ ├── Install │ │ ├── Contexts.meta │ │ ├── Contexts │ │ │ ├── Context.cs │ │ │ ├── Context.cs.meta │ │ │ ├── GameObjectContext.cs │ │ │ ├── GameObjectContext.cs.meta │ │ │ ├── ProjectContext.cs │ │ │ ├── ProjectContext.cs.meta │ │ │ ├── RunnableContext.cs │ │ │ ├── RunnableContext.cs.meta │ │ │ ├── SceneContext.cs │ │ │ ├── SceneContext.cs.meta │ │ │ ├── SceneDecoratorContext.cs │ │ │ ├── SceneDecoratorContext.cs.meta │ │ │ ├── StaticContext.cs │ │ │ └── StaticContext.cs.meta │ │ ├── IInstaller.cs │ │ ├── IInstaller.cs.meta │ │ ├── Installer.cs │ │ ├── Installer.cs.meta │ │ ├── InstallerBase.cs │ │ ├── InstallerBase.cs.meta │ │ ├── MonoInstaller.cs │ │ ├── MonoInstaller.cs.meta │ │ ├── MonoInstallerBase.cs │ │ ├── MonoInstallerBase.cs.meta │ │ ├── ScriptableObjectInstaller.cs │ │ ├── ScriptableObjectInstaller.cs.meta │ │ ├── ScriptableObjectInstallerBase.cs │ │ ├── ScriptableObjectInstallerBase.cs.meta │ │ ├── ZenjectBinding.cs │ │ ├── ZenjectBinding.cs.meta │ │ ├── ZenjectManagersInstaller.cs │ │ └── ZenjectManagersInstaller.cs.meta │ ├── Internal.meta │ ├── Internal │ │ ├── Assert.cs │ │ ├── Assert.cs.meta │ │ ├── Func.cs │ │ ├── Func.cs.meta │ │ ├── LinqExtensions.cs │ │ ├── LinqExtensions.cs.meta │ │ ├── Log.cs │ │ ├── Log.cs.meta │ │ ├── MiscExtensions.cs │ │ ├── MiscExtensions.cs.meta │ │ ├── PreserveAttribute.cs │ │ ├── PreserveAttribute.cs.meta │ │ ├── TypeExtensions.cs │ │ ├── TypeExtensions.cs.meta │ │ ├── TypeStringFormatter.cs │ │ ├── TypeStringFormatter.cs.meta │ │ ├── ValuePair.cs │ │ └── ValuePair.cs.meta │ ├── Main.meta │ ├── Main │ │ ├── BindingId.cs │ │ ├── BindingId.cs.meta │ │ ├── DiContainer.cs │ │ ├── DiContainer.cs.meta │ │ ├── IInstantiator.cs │ │ ├── IInstantiator.cs.meta │ │ ├── LazyInstanceInjector.cs │ │ ├── LazyInstanceInjector.cs.meta │ │ ├── LookupId.cs │ │ ├── LookupId.cs.meta │ │ ├── SingletonMarkRegistry.cs │ │ ├── SingletonMarkRegistry.cs.meta │ │ ├── ZenjectSettings.cs │ │ └── ZenjectSettings.cs.meta │ ├── Providers.meta │ ├── Providers │ │ ├── CachedOpenTypeProvider.cs │ │ ├── CachedOpenTypeProvider.cs.meta │ │ ├── CachedProvider.cs │ │ ├── CachedProvider.cs.meta │ │ ├── ComponentProviders.meta │ │ ├── ComponentProviders │ │ │ ├── AddToGameObjectComponentProviders.meta │ │ │ ├── AddToGameObjectComponentProviders │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs.meta │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs.meta │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs.meta │ │ │ │ ├── AddToNewGameObjectComponentProvider.cs │ │ │ │ └── AddToNewGameObjectComponentProvider.cs.meta │ │ │ ├── GetFromGameObjectComponentProvider.cs │ │ │ ├── GetFromGameObjectComponentProvider.cs.meta │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs.meta │ │ │ ├── GetFromPrefabComponentProvider.cs │ │ │ ├── GetFromPrefabComponentProvider.cs.meta │ │ │ ├── InstantiateOnPrefabComponentProvider.cs │ │ │ └── InstantiateOnPrefabComponentProvider.cs.meta │ │ ├── Decorator.meta │ │ ├── Decorator │ │ │ ├── DecoratorProvider.cs │ │ │ └── DecoratorProvider.cs.meta │ │ ├── GameObjectProviders.meta │ │ ├── GameObjectProviders │ │ │ ├── EmptyGameObjectProvider.cs │ │ │ ├── EmptyGameObjectProvider.cs.meta │ │ │ ├── PrefabGameObjectProvider.cs │ │ │ └── PrefabGameObjectProvider.cs.meta │ │ ├── GetterProvider.cs │ │ ├── GetterProvider.cs.meta │ │ ├── IFactoryProvider.cs │ │ ├── IFactoryProvider.cs.meta │ │ ├── IProvider.cs │ │ ├── IProvider.cs.meta │ │ ├── IProviderExtensions.cs │ │ ├── IProviderExtensions.cs.meta │ │ ├── InstanceProvider.cs │ │ ├── InstanceProvider.cs.meta │ │ ├── MethodMultipleProviderUntyped.cs │ │ ├── MethodMultipleProviderUntyped.cs.meta │ │ ├── MethodProvider.cs │ │ ├── MethodProvider.cs.meta │ │ ├── MethodProviderMultiple.cs │ │ ├── MethodProviderMultiple.cs.meta │ │ ├── MethodProviderSimple.cs │ │ ├── MethodProviderSimple.cs.meta │ │ ├── MethodProviderUntyped.cs │ │ ├── MethodProviderUntyped.cs.meta │ │ ├── MethodProviderWithContainer.cs │ │ ├── MethodProviderWithContainer.cs.meta │ │ ├── PoolableMemoryPoolProvider.cs │ │ ├── PoolableMemoryPoolProvider.cs.meta │ │ ├── PrefabCreators.meta │ │ ├── PrefabCreators │ │ │ ├── IPrefabInstantiator.cs │ │ │ ├── IPrefabInstantiator.cs.meta │ │ │ ├── PrefabInstantiator.cs │ │ │ ├── PrefabInstantiator.cs.meta │ │ │ ├── PrefabInstantiatorCached.cs │ │ │ └── PrefabInstantiatorCached.cs.meta │ │ ├── PrefabProviders.meta │ │ ├── PrefabProviders │ │ │ ├── IPrefabProvider.cs │ │ │ ├── IPrefabProvider.cs.meta │ │ │ ├── PrefabProvider.cs │ │ │ ├── PrefabProvider.cs.meta │ │ │ ├── PrefabProviderCustom.cs │ │ │ ├── PrefabProviderCustom.cs.meta │ │ │ ├── PrefabProviderResource.cs │ │ │ └── PrefabProviderResource.cs.meta │ │ ├── ProviderUtil.cs │ │ ├── ProviderUtil.cs.meta │ │ ├── ResolveProvider.cs │ │ ├── ResolveProvider.cs.meta │ │ ├── ResourceProvider.cs │ │ ├── ResourceProvider.cs.meta │ │ ├── ScriptableObjectInstanceProvider.cs │ │ ├── ScriptableObjectInstanceProvider.cs.meta │ │ ├── ScriptableObjectResourceProvider.cs │ │ ├── ScriptableObjectResourceProvider.cs.meta │ │ ├── SubContainerCreators.meta │ │ ├── SubContainerCreators │ │ │ ├── ISubContainerCreator.cs │ │ │ ├── ISubContainerCreator.cs.meta │ │ │ ├── SubContainerCreatorBindInfo.cs │ │ │ ├── SubContainerCreatorBindInfo.cs.meta │ │ │ ├── SubContainerCreatorByInstaller.cs │ │ │ ├── SubContainerCreatorByInstaller.cs.meta │ │ │ ├── SubContainerCreatorByInstance.cs │ │ │ ├── SubContainerCreatorByInstance.cs.meta │ │ │ ├── SubContainerCreatorByInstanceGetter.cs │ │ │ ├── SubContainerCreatorByInstanceGetter.cs.meta │ │ │ ├── SubContainerCreatorByMethod.cs │ │ │ ├── SubContainerCreatorByMethod.cs.meta │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs.meta │ │ │ ├── SubContainerCreatorByNewPrefab.cs │ │ │ ├── SubContainerCreatorByNewPrefab.cs.meta │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs.meta │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs.meta │ │ │ ├── SubContainerCreatorCached.cs │ │ │ ├── SubContainerCreatorCached.cs.meta │ │ │ ├── SubContainerCreatorDynamicContext.cs │ │ │ ├── SubContainerCreatorDynamicContext.cs.meta │ │ │ ├── SubContainerCreatorUtil.cs │ │ │ └── SubContainerCreatorUtil.cs.meta │ │ ├── SubContainerDependencyProvider.cs │ │ ├── SubContainerDependencyProvider.cs.meta │ │ ├── TransientProvider.cs │ │ └── TransientProvider.cs.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── AnimatorInterfaces.meta │ │ ├── AnimatorInterfaces │ │ │ ├── AnimatorIkHandlerManager.cs │ │ │ ├── AnimatorIkHandlerManager.cs.meta │ │ │ ├── AnimatorInstaller.cs │ │ │ ├── AnimatorInstaller.cs.meta │ │ │ ├── AnimatorMoveHandlerManager.cs │ │ │ ├── AnimatorMoveHandlerManager.cs.meta │ │ │ ├── IAnimatorIkHandler.cs │ │ │ ├── IAnimatorIkHandler.cs.meta │ │ │ ├── IAnimatorMoveHandler.cs │ │ │ └── IAnimatorMoveHandler.cs.meta │ │ ├── DisposableManager.cs │ │ ├── DisposableManager.cs.meta │ │ ├── GuiRenderableManager.cs │ │ ├── GuiRenderableManager.cs.meta │ │ ├── GuiRenderer.cs │ │ ├── GuiRenderer.cs.meta │ │ ├── InitializableManager.cs │ │ ├── InitializableManager.cs.meta │ │ ├── Kernels.meta │ │ ├── Kernels │ │ │ ├── DecoratableMonoKernel.cs │ │ │ ├── DecoratableMonoKernel.cs.meta │ │ │ ├── DefaultGameObjectKernel.cs │ │ │ ├── DefaultGameObjectKernel.cs.meta │ │ │ ├── Kernel.cs │ │ │ ├── Kernel.cs.meta │ │ │ ├── MonoKernel.cs │ │ │ ├── MonoKernel.cs.meta │ │ │ ├── ProjectKernel.cs │ │ │ ├── ProjectKernel.cs.meta │ │ │ ├── SceneKernel.cs │ │ │ └── SceneKernel.cs.meta │ │ ├── PoolableManager.cs │ │ ├── PoolableManager.cs.meta │ │ ├── SceneContextRegistry.cs │ │ ├── SceneContextRegistry.cs.meta │ │ ├── SceneContextRegistryAdderAndRemover.cs │ │ ├── SceneContextRegistryAdderAndRemover.cs.meta │ │ ├── TaskUpdater.cs │ │ ├── TaskUpdater.cs.meta │ │ ├── TickableManager.cs │ │ └── TickableManager.cs.meta │ ├── Usage.meta │ ├── Usage │ │ ├── Zenject-usage.dll │ │ ├── Zenject-usage.dll.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Util.meta │ ├── Util │ │ ├── ActionInstaller.cs │ │ ├── ActionInstaller.cs.meta │ │ ├── CheatSheet.cs │ │ ├── CheatSheet.cs.meta │ │ ├── DefaultGameObjectParentInstaller.cs │ │ ├── DefaultGameObjectParentInstaller.cs.meta │ │ ├── DisposeBlock.cs │ │ ├── DisposeBlock.cs.meta │ │ ├── ExecutionOrderInstaller.cs │ │ ├── ExecutionOrderInstaller.cs.meta │ │ ├── ProfileBlock.cs │ │ ├── ProfileBlock.cs.meta │ │ ├── ProfileTimers.cs │ │ ├── ProfileTimers.cs.meta │ │ ├── ReflectionInfoTypeInfoConverter.cs │ │ ├── ReflectionInfoTypeInfoConverter.cs.meta │ │ ├── ReflectionTypeInfo.cs │ │ ├── ReflectionTypeInfo.cs.meta │ │ ├── ReflectionUtil.cs │ │ ├── ReflectionUtil.cs.meta │ │ ├── TypeAnalyzer.cs │ │ ├── TypeAnalyzer.cs.meta │ │ ├── UnityUtil.cs │ │ ├── UnityUtil.cs.meta │ │ ├── ValidationUtil.cs │ │ ├── ValidationUtil.cs.meta │ │ ├── ZenAutoInjecter.cs │ │ ├── ZenAutoInjecter.cs.meta │ │ ├── ZenPools.cs │ │ ├── ZenPools.cs.meta │ │ ├── ZenReflectionTypeAnalyzer.cs │ │ ├── ZenReflectionTypeAnalyzer.cs.meta │ │ ├── ZenUtilInternal.cs │ │ ├── ZenUtilInternal.cs.meta │ │ ├── ZenjectException.cs │ │ ├── ZenjectException.cs.meta │ │ ├── ZenjectSceneLoader.cs │ │ ├── ZenjectSceneLoader.cs.meta │ │ ├── ZenjectStateMachineBehaviourAutoInjecter.cs │ │ └── ZenjectStateMachineBehaviourAutoInjecter.cs.meta │ ├── Validation.meta │ ├── Validation │ │ ├── IValidatable.cs │ │ ├── IValidatable.cs.meta │ │ ├── ValidationMarker.cs │ │ └── ValidationMarker.cs.meta │ ├── Zenject-Source.asmdef │ └── Zenject-Source.asmdef.meta │ ├── Version.txt │ ├── Version.txt.meta │ ├── package.json │ └── package.json.meta ├── Prefabs.meta ├── Prefabs ├── CommonUIPrefab.meta └── CommonUIPrefab │ ├── PopupBlurBG.prefab │ ├── PopupBlurBG.prefab.meta │ ├── PoupBlurBGBlurConfig.asset │ ├── PoupBlurBGBlurConfig.asset.meta │ ├── RootUI.prefab │ ├── RootUI.prefab.meta │ ├── UIBasePopup.prefab │ ├── UIBasePopup.prefab.meta │ ├── UIBaseScreen.prefab │ └── UIBaseScreen.prefab.meta ├── README.md ├── README.md.meta ├── Resources.meta ├── Resources ├── GameFoundationAudio.prefab ├── GameFoundationAudio.prefab.meta ├── GameFoundationPlaylistController.prefab └── GameFoundationPlaylistController.prefab.meta ├── Scripts.meta ├── Scripts ├── AssetLibrary.meta ├── AssetLibrary │ ├── ComponentReference.cs │ ├── ComponentReference.cs.meta │ ├── GameAssets.cs │ ├── GameAssets.cs.meta │ ├── GameFoundation.AssetLibrary.asmdef │ ├── GameFoundation.AssetLibrary.asmdef.meta │ ├── LoadAssetsByLabelOperation.cs │ └── LoadAssetsByLabelOperation.cs.meta ├── DataManager.meta ├── DataManager │ ├── Blueprint.meta │ ├── Blueprint │ │ ├── APIHandler.meta │ │ ├── APIHandler │ │ │ ├── BlueprintDownloader.cs │ │ │ ├── BlueprintDownloader.cs.meta │ │ │ ├── FetchBlueprintInfo.cs │ │ │ └── FetchBlueprintInfo.cs.meta │ │ ├── BlueprintController.meta │ │ ├── BlueprintController │ │ │ ├── BlueprintConfig.cs │ │ │ ├── BlueprintConfig.cs.meta │ │ │ ├── BlueprintReaderManager.cs │ │ │ ├── BlueprintReaderManager.cs.meta │ │ │ ├── BlueprintServicesInstaller.cs │ │ │ ├── BlueprintServicesInstaller.cs.meta │ │ │ ├── PreProcessBlueprintMobile.cs │ │ │ └── PreProcessBlueprintMobile.cs.meta │ │ ├── BlueprintReader.meta │ │ ├── BlueprintReader │ │ │ ├── BlueprintReaderAttribute.cs │ │ │ ├── BlueprintReaderAttribute.cs.meta │ │ │ ├── Converter.meta │ │ │ ├── Converter │ │ │ │ ├── CSVHelper.cs │ │ │ │ ├── CSVHelper.cs.meta │ │ │ │ ├── CustomTypeConverterAttribute.cs │ │ │ │ ├── CustomTypeConverterAttribute.cs.meta │ │ │ │ ├── TypeConversion.meta │ │ │ │ ├── TypeConversion │ │ │ │ │ ├── ArrayGenericConverter.cs │ │ │ │ │ ├── ArrayGenericConverter.cs.meta │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ ├── BooleanConverter.cs.meta │ │ │ │ │ ├── ByteArrayConverter.cs │ │ │ │ │ ├── ByteArrayConverter.cs.meta │ │ │ │ │ ├── ByteArrayConverterOptions.cs │ │ │ │ │ ├── ByteArrayConverterOptions.cs.meta │ │ │ │ │ ├── ByteConverter.cs │ │ │ │ │ ├── ByteConverter.cs.meta │ │ │ │ │ ├── CharConverter.cs │ │ │ │ │ ├── CharConverter.cs.meta │ │ │ │ │ ├── CsvHelpExtensions.cs │ │ │ │ │ ├── CsvHelpExtensions.cs.meta │ │ │ │ │ ├── DateConverter.cs │ │ │ │ │ ├── DateConverter.cs.meta │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ ├── DateTimeOffsetConverter.cs.meta │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ ├── DecimalConverter.cs.meta │ │ │ │ │ ├── DefaultTypeConverter.cs │ │ │ │ │ ├── DefaultTypeConverter.cs.meta │ │ │ │ │ ├── DictionaryGenericConverter.cs │ │ │ │ │ ├── DictionaryGenericConverter.cs.meta │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ ├── DoubleConverter.cs.meta │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ ├── EnumConverter.cs.meta │ │ │ │ │ ├── EnumerableConverter.cs │ │ │ │ │ ├── EnumerableConverter.cs.meta │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ ├── GuidConverter.cs.meta │ │ │ │ │ ├── ITypeConverter.cs │ │ │ │ │ ├── ITypeConverter.cs.meta │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ ├── Int16Converter.cs.meta │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ ├── Int32Converter.cs.meta │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ ├── Int64Converter.cs.meta │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverter.cs.meta │ │ │ │ │ ├── ListGenericConverter.cs │ │ │ │ │ ├── ListGenericConverter.cs.meta │ │ │ │ │ ├── NullableConverter.cs │ │ │ │ │ ├── NullableConverter.cs.meta │ │ │ │ │ ├── PairGenericConverter.cs │ │ │ │ │ ├── PairGenericConverter.cs.meta │ │ │ │ │ ├── ReadonlyCollectionConverter.cs │ │ │ │ │ ├── ReadonlyCollectionConverter.cs.meta │ │ │ │ │ ├── SByteConverter.cs │ │ │ │ │ ├── SByteConverter.cs.meta │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ ├── SingleConverter.cs.meta │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ ├── StringConverter.cs.meta │ │ │ │ │ ├── Tuple3GenericConverter.cs │ │ │ │ │ ├── Tuple3GenericConverter.cs.meta │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ ├── UInt16Converter.cs.meta │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ ├── UInt32Converter.cs.meta │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ ├── UInt64Converter.cs.meta │ │ │ │ │ ├── UnityVector2Converter.cs │ │ │ │ │ ├── UnityVector2Converter.cs.meta │ │ │ │ │ ├── UnityVector3Converter.cs │ │ │ │ │ ├── UnityVector3Converter.cs.meta │ │ │ │ │ ├── UriConverter.cs │ │ │ │ │ └── UriConverter.cs.meta │ │ │ │ ├── TypeConverterCache.cs │ │ │ │ └── TypeConverterCache.cs.meta │ │ │ ├── Exceptions.cs │ │ │ ├── Exceptions.cs.meta │ │ │ ├── GenericBlueprintReaderByCol.cs │ │ │ ├── GenericBlueprintReaderByCol.cs.meta │ │ │ ├── GenericBlueprintReaderByRow.cs │ │ │ ├── GenericBlueprintReaderByRow.cs.meta │ │ │ ├── IGenericBlueprintReader.cs │ │ │ └── IGenericBlueprintReader.cs.meta │ │ ├── BlueprintSource.meta │ │ ├── BlueprintSource │ │ │ ├── AddressableBlueprintLoader.cs │ │ │ ├── AddressableBlueprintLoader.cs.meta │ │ │ ├── CloudBlueprintLoader.cs │ │ │ ├── CloudBlueprintLoader.cs.meta │ │ │ ├── IBlueprintLoader.cs │ │ │ ├── IBlueprintLoader.cs.meta │ │ │ ├── ResourceBlueprintLoader.cs │ │ │ └── ResourceBlueprintLoader.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BlueprintConfigEditor.cs │ │ │ ├── BlueprintConfigEditor.cs.meta │ │ │ ├── BlueprintConfigEditor.uxml │ │ │ ├── BlueprintConfigEditor.uxml.meta │ │ │ ├── GameFoundation.BlueprintFlow.Editor.asmdef │ │ │ └── GameFoundation.BlueprintFlow.Editor.asmdef.meta │ │ ├── Signals.meta │ │ └── Signals │ │ │ ├── BlueprintSignals.cs │ │ │ └── BlueprintSignals.cs.meta │ ├── GameFoundation.DataManager.asmdef │ ├── GameFoundation.DataManager.asmdef.meta │ ├── LocalData.meta │ ├── LocalData │ │ ├── BaseHandleLocalDataServices.cs │ │ ├── BaseHandleLocalDataServices.cs.meta │ │ ├── IHandleLocalDataServices.cs │ │ ├── IHandleLocalDataServices.cs.meta │ │ ├── ILocalData.cs │ │ ├── ILocalData.cs.meta │ │ ├── MinimizeAppService.cs │ │ ├── MinimizeAppService.cs.meta │ │ ├── PlayerPrefsLocalDataServices.cs │ │ └── PlayerPrefsLocalDataServices.cs.meta │ ├── MasterData.meta │ ├── MasterData │ │ ├── MasterDataManager.cs │ │ ├── MasterDataManager.cs.meta │ │ ├── MasterDataReadySignal.cs │ │ └── MasterDataReadySignal.cs.meta │ ├── UserData.meta │ └── UserData │ │ ├── BaseDataManager.cs │ │ ├── BaseDataManager.cs.meta │ │ ├── IInitializeDataOnStart.cs │ │ ├── IInitializeDataOnStart.cs.meta │ │ ├── IUserData.cs │ │ └── IUserData.cs.meta ├── GameConfigs.meta ├── GameConfigs │ ├── GDKConfig.cs │ ├── GDKConfig.cs.meta │ ├── GameFoundation.GameConfigs.asmdef │ ├── GameFoundation.GameConfigs.asmdef.meta │ ├── IGameConfig.cs │ └── IGameConfig.cs.meta ├── GameFoundation.Script.asmdef ├── GameFoundation.Script.asmdef.meta ├── GameFoundationInstaller.cs ├── GameFoundationInstaller.cs.meta ├── SoundManager.meta ├── SoundManager │ ├── AudioManager.cs │ ├── AudioManager.cs.meta │ ├── GameFoundation.SoundManager.asmdef │ ├── GameFoundation.SoundManager.asmdef.meta │ ├── SoundManager.cs │ ├── SoundManager.cs.meta │ ├── SoundSetting.cs │ └── SoundSetting.cs.meta ├── UIModule.meta ├── UIModule │ ├── Adapter.meta │ ├── Adapter │ │ ├── BasicGridAdapter.cs │ │ ├── BasicGridAdapter.cs.meta │ │ ├── BasicListAdapter.cs │ │ ├── BasicListAdapter.cs.meta │ │ ├── MultiplePrefabsListAdapter.cs │ │ └── MultiplePrefabsListAdapter.cs.meta │ ├── CommonScreen.meta │ ├── CommonScreen │ │ ├── NotificationPopupUIView.cs │ │ └── NotificationPopupUIView.cs.meta │ ├── GameFoundation.UIModule.asmdef │ ├── GameFoundation.UIModule.asmdef.meta │ ├── MVP.meta │ ├── MVP │ │ ├── BaseUIItemPresenter.cs │ │ ├── BaseUIItemPresenter.cs.meta │ │ ├── IUIModel.cs │ │ ├── IUIModel.cs.meta │ │ ├── IUIPresenter.cs │ │ ├── IUIPresenter.cs.meta │ │ ├── IUIView.cs │ │ └── IUIView.cs.meta │ ├── ScreenFlow.meta │ ├── ScreenFlow │ │ ├── BaseScreen.meta │ │ ├── BaseScreen │ │ │ ├── Model.meta │ │ │ ├── Model │ │ │ │ ├── IScreenModel.cs │ │ │ │ └── IScreenModel.cs.meta │ │ │ ├── Presenter.meta │ │ │ ├── Presenter │ │ │ │ ├── BasePopupPresenter.cs │ │ │ │ ├── BasePopupPresenter.cs.meta │ │ │ │ ├── BaseScreenPresenter.cs │ │ │ │ ├── BaseScreenPresenter.cs.meta │ │ │ │ ├── IScreenPresenter.cs │ │ │ │ ├── IScreenPresenter.cs.meta │ │ │ │ ├── ScreenInfoAttribute.cs │ │ │ │ └── ScreenInfoAttribute.cs.meta │ │ │ ├── View.meta │ │ │ └── View │ │ │ │ ├── BaseView.cs │ │ │ │ ├── BaseView.cs.meta │ │ │ │ ├── IScreenView.cs │ │ │ │ └── IScreenView.cs.meta │ │ ├── Managers.meta │ │ ├── Managers │ │ │ ├── BaseSceneInstaller.cs │ │ │ ├── BaseSceneInstaller.cs.meta │ │ │ ├── PopupBlurBackgroundManager.cs │ │ │ ├── PopupBlurBackgroundManager.cs.meta │ │ │ ├── RootUICanvas.cs │ │ │ ├── RootUICanvas.cs.meta │ │ │ ├── SceneDirector.cs │ │ │ ├── SceneDirector.cs.meta │ │ │ ├── ScreenFlowInstaller.cs │ │ │ ├── ScreenFlowInstaller.cs.meta │ │ │ ├── ScreenManager.cs │ │ │ └── ScreenManager.cs.meta │ │ ├── Signals.meta │ │ └── Signals │ │ │ ├── PopupSignal.cs │ │ │ ├── PopupSignal.cs.meta │ │ │ ├── SceneSignals.cs │ │ │ ├── SceneSignals.cs.meta │ │ │ ├── ScreenSignals.cs │ │ │ └── ScreenSignals.cs.meta │ ├── Utilities.meta │ └── Utilities │ │ ├── CameraStacker.cs │ │ ├── CameraStacker.cs.meta │ │ ├── ExtensionMethod.cs │ │ ├── ExtensionMethod.cs.meta │ │ ├── FormatNumberHelper.cs │ │ ├── FormatNumberHelper.cs.meta │ │ ├── GameQueueAction.meta │ │ ├── GameQueueAction │ │ ├── BaseQueueAction.cs │ │ ├── BaseQueueAction.cs.meta │ │ ├── GameQueueActionContext.cs │ │ ├── GameQueueActionContext.cs.meta │ │ ├── GameQueueActionInstaller.cs │ │ ├── GameQueueActionInstaller.cs.meta │ │ ├── GameQueueActionParam.cs │ │ ├── GameQueueActionParam.cs.meta │ │ ├── GameQueueActionServices.cs │ │ ├── GameQueueActionServices.cs.meta │ │ ├── IGameQueueAction.cs │ │ ├── IGameQueueAction.cs.meta │ │ ├── PlayTimelineQueueAction.cs │ │ ├── PlayTimelineQueueAction.cs.meta │ │ ├── PlayTweenQueueAction.cs │ │ ├── PlayTweenQueueAction.cs.meta │ │ ├── ShowPopupQueueAction.cs │ │ └── ShowPopupQueueAction.cs.meta │ │ ├── LoadImage.meta │ │ ├── LoadImage │ │ ├── LoadImageHelper.cs │ │ └── LoadImageHelper.cs.meta │ │ ├── ScaleScreenRatio.cs │ │ ├── ScaleScreenRatio.cs.meta │ │ ├── UIEffect.meta │ │ ├── UIEffect │ │ ├── ChangeGrayscale.meta │ │ ├── ChangeGrayscale │ │ │ ├── ChangeGrayScaleBase.cs │ │ │ ├── ChangeGrayScaleBase.cs.meta │ │ │ ├── IChangeGrayScale.cs │ │ │ ├── IChangeGrayScale.cs.meta │ │ │ ├── ImageChangeGrayScale.cs │ │ │ ├── ImageChangeGrayScale.cs.meta │ │ │ ├── TextChangeGrayScale.cs │ │ │ └── TextChangeGrayScale.cs.meta │ │ ├── UIEffectHelper.cs │ │ └── UIEffectHelper.cs.meta │ │ ├── UILayoutElement.meta │ │ ├── UILayoutElement │ │ ├── FollowLayoutElementPreferredSize.cs │ │ ├── FollowLayoutElementPreferredSize.cs.meta │ │ ├── TextLayoutElement.cs │ │ └── TextLayoutElement.cs.meta │ │ ├── UIStuff.meta │ │ └── UIStuff │ │ ├── AutoCooldownTimer.cs │ │ ├── AutoCooldownTimer.cs.meta │ │ ├── BaseMechSFX.cs │ │ ├── BaseMechSFX.cs.meta │ │ ├── MechButton.cs │ │ ├── MechButton.cs.meta │ │ ├── MechPointerEvent.cs │ │ ├── MechPointerEvent.cs.meta │ │ ├── MechTextMeshPro.cs │ │ ├── MechTextMeshPro.cs.meta │ │ ├── NonDrawingGraphic.cs │ │ ├── NonDrawingGraphic.cs.meta │ │ ├── RotateUIFollowOrientation.cs │ │ ├── RotateUIFollowOrientation.cs.meta │ │ ├── SafeArea.cs │ │ ├── SafeArea.cs.meta │ │ ├── UIScreenTransition.cs │ │ ├── UIScreenTransition.cs.meta │ │ ├── UITransition.meta │ │ └── UITransition │ │ ├── AnimatorTransition.cs │ │ ├── AnimatorTransition.cs.meta │ │ ├── DoTweenTransition.cs │ │ ├── DoTweenTransition.cs.meta │ │ ├── PlayableDirectorTransition.cs │ │ └── PlayableDirectorTransition.cs.meta ├── Utilities.meta └── Utilities │ ├── ApplicationServices.meta │ ├── ApplicationServices │ ├── ApplicationPauseSignal.cs │ ├── ApplicationPauseSignal.cs.meta │ ├── ApplicationServiceInstaller.cs │ ├── ApplicationServiceInstaller.cs.meta │ ├── DetectRotateOrientation.cs │ ├── DetectRotateOrientation.cs.meta │ ├── UpdateTimeAfterFocusSignal.cs │ └── UpdateTimeAfterFocusSignal.cs.meta │ ├── BaseTextMeshPro.cs │ ├── BaseTextMeshPro.cs.meta │ ├── Extension.meta │ ├── Extension │ ├── DateTimeExtensions.cs │ ├── DateTimeExtensions.cs.meta │ ├── DictionaryExtension.cs │ ├── DictionaryExtension.cs.meta │ ├── ExtensionMethod.cs │ ├── ExtensionMethod.cs.meta │ ├── Fps.cs │ ├── Fps.cs.meta │ ├── FpsCounter.cs │ ├── FpsCounter.cs.meta │ ├── IEnumableExtension.cs │ ├── IEnumableExtension.cs.meta │ ├── ListExtension.cs │ ├── ListExtension.cs.meta │ ├── MD5Utils.cs │ ├── MD5Utils.cs.meta │ ├── ReflectionUtils.cs │ ├── ReflectionUtils.cs.meta │ ├── StringExtension.cs │ ├── StringExtension.cs.meta │ ├── SwipeManager.cs │ ├── SwipeManager.cs.meta │ ├── TypeExtension.cs │ ├── TypeExtension.cs.meta │ ├── UniRxSubcribeTextExtension.cs │ ├── UniRxSubcribeTextExtension.cs.meta │ ├── UnityExtension.cs │ ├── UnityExtension.cs.meta │ ├── UnitySerializedDictionary.cs │ ├── UnitySerializedDictionary.cs.meta │ ├── ZenjectUtils.cs │ └── ZenjectUtils.cs.meta │ ├── GameFoundation.Utilities.asmdef │ ├── GameFoundation.Utilities.asmdef.meta │ ├── GameInfoMono.cs │ ├── GameInfoMono.cs.meta │ ├── LocalizationService.cs │ ├── LocalizationService.cs.meta │ ├── LogService.meta │ ├── LogService │ ├── IDebugService.cs │ ├── IDebugService.cs.meta │ ├── LoadingTimeTracker.cs │ ├── LoadingTimeTracker.cs.meta │ ├── LogService.cs │ └── LogService.cs.meta │ ├── ObjectPool.meta │ ├── ObjectPool │ ├── ObjectPool.cs │ ├── ObjectPool.cs.meta │ ├── ObjectPoolExtensions.cs │ ├── ObjectPoolExtensions.cs.meta │ ├── ObjectPoolManager.cs │ ├── ObjectPoolManager.cs.meta │ ├── StartupPool.cs │ └── StartupPool.cs.meta │ ├── SpriteAtlas.meta │ ├── SpriteAtlas │ ├── SpriteAtlasHandler.cs │ └── SpriteAtlasHandler.cs.meta │ ├── TimelineUtils.meta │ ├── TimelineUtils │ ├── CustomTimeline.meta │ ├── CustomTimeline │ │ ├── CustomAnimation.meta │ │ ├── CustomAnimation │ │ │ ├── CustomAnimationBehaviour.cs │ │ │ ├── CustomAnimationBehaviour.cs.meta │ │ │ ├── CustomAnimationClip.cs │ │ │ ├── CustomAnimationClip.cs.meta │ │ │ ├── CustomAnimationMixerBehaviour.cs │ │ │ ├── CustomAnimationMixerBehaviour.cs.meta │ │ │ ├── CustomAnimationTrack.cs │ │ │ ├── CustomAnimationTrack.cs.meta │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── CustomAnimationDrawer.cs │ │ │ │ └── CustomAnimationDrawer.cs.meta │ │ ├── Marker.meta │ │ ├── Marker │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── MarkerDrawer.cs │ │ │ │ └── MarkerDrawer.cs.meta │ │ │ ├── MarkerBehaviour.cs │ │ │ ├── MarkerBehaviour.cs.meta │ │ │ ├── MarkerClip.cs │ │ │ ├── MarkerClip.cs.meta │ │ │ ├── MarkerMixerBehaviour.cs │ │ │ ├── MarkerMixerBehaviour.cs.meta │ │ │ ├── MarkerTrack.cs │ │ │ └── MarkerTrack.cs.meta │ │ ├── Slider.meta │ │ ├── Slider │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── SliderDrawer.cs │ │ │ │ └── SliderDrawer.cs.meta │ │ │ ├── SliderBehaviour.cs │ │ │ ├── SliderBehaviour.cs.meta │ │ │ ├── SliderClip.cs │ │ │ ├── SliderClip.cs.meta │ │ │ ├── SliderMixerBehaviour.cs │ │ │ ├── SliderMixerBehaviour.cs.meta │ │ │ ├── SliderTrack.cs │ │ │ └── SliderTrack.cs.meta │ │ ├── TMPTextCounter.meta │ │ ├── TMPTextCounter │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── TMPTextCounterDrawer.cs │ │ │ │ └── TMPTextCounterDrawer.cs.meta │ │ │ ├── TMPTextCounterBehaviour.cs │ │ │ ├── TMPTextCounterBehaviour.cs.meta │ │ │ ├── TMPTextCounterClip.cs │ │ │ ├── TMPTextCounterClip.cs.meta │ │ │ ├── TMPTextCounterMixerBehaviour.cs │ │ │ ├── TMPTextCounterMixerBehaviour.cs.meta │ │ │ ├── TMPTextCounterTrack.cs │ │ │ └── TMPTextCounterTrack.cs.meta │ │ ├── TMPUITextCounter.meta │ │ ├── TMPUITextCounter │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── TMPUITextCounterDrawer.cs │ │ │ │ └── TMPUITextCounterDrawer.cs.meta │ │ │ ├── TMPUITextCounterBehaviour.cs │ │ │ ├── TMPUITextCounterBehaviour.cs.meta │ │ │ ├── TMPUITextCounterClip.cs │ │ │ ├── TMPUITextCounterClip.cs.meta │ │ │ ├── TMPUITextCounterMixerBehaviour.cs │ │ │ ├── TMPUITextCounterMixerBehaviour.cs.meta │ │ │ ├── TMPUITextCounterTrack.cs │ │ │ └── TMPUITextCounterTrack.cs.meta │ │ ├── TimeMachine.meta │ │ ├── TimeMachine │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── TimeMachineClipInspector.cs │ │ │ │ └── TimeMachineClipInspector.cs.meta │ │ │ ├── TimeMachineBehaviour.cs │ │ │ ├── TimeMachineBehaviour.cs.meta │ │ │ ├── TimeMachineClip.cs │ │ │ ├── TimeMachineClip.cs.meta │ │ │ ├── TimeMachineMixerBehaviour.cs │ │ │ ├── TimeMachineMixerBehaviour.cs.meta │ │ │ ├── TimeMachineTrack.cs │ │ │ └── TimeMachineTrack.cs.meta │ │ ├── TimeScale.meta │ │ ├── TimeScale │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── TimeScaleDrawer.cs │ │ │ │ └── TimeScaleDrawer.cs.meta │ │ │ ├── TimeScaleBehaviour.cs │ │ │ ├── TimeScaleBehaviour.cs.meta │ │ │ ├── TimeScaleClip.cs │ │ │ ├── TimeScaleClip.cs.meta │ │ │ ├── TimeScaleMixerBehaviour.cs │ │ │ ├── TimeScaleMixerBehaviour.cs.meta │ │ │ ├── TimeScaleTrack.cs │ │ │ └── TimeScaleTrack.cs.meta │ │ ├── TimelineEvents.meta │ │ └── TimelineEvents │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── TimelineEventDrawer.cs │ │ │ └── TimelineEventDrawer.cs.meta │ │ │ ├── EventInvocationInfo.cs │ │ │ ├── EventInvocationInfo.cs.meta │ │ │ ├── TimelineEventBehaviour.cs │ │ │ ├── TimelineEventBehaviour.cs.meta │ │ │ ├── TimelineEventClip.cs │ │ │ ├── TimelineEventClip.cs.meta │ │ │ ├── TimelineEventMixerBehaviour.cs │ │ │ ├── TimelineEventMixerBehaviour.cs.meta │ │ │ ├── TimelineEventTrack.cs │ │ │ └── TimelineEventTrack.cs.meta │ ├── Extensions.meta │ └── Extensions │ │ ├── PlayableDirectorExtensions.cs │ │ ├── PlayableDirectorExtensions.cs.meta │ │ ├── PlayableDirectorHelper.cs │ │ └── PlayableDirectorHelper.cs.meta │ ├── Utils.meta │ └── Utils │ ├── EnumEnumerableExcludeAttribute.cs │ ├── EnumEnumerableExcludeAttribute.cs.meta │ ├── HttpRequestDefinitionAttribute.cs │ ├── HttpRequestDefinitionAttribute.cs.meta │ ├── IterTools.cs │ ├── IterTools.cs.meta │ ├── ListExtension.cs │ ├── ListExtension.cs.meta │ ├── ServerAnnotations.cs │ ├── ServerAnnotations.cs.meta │ ├── TimeUtils.cs │ └── TimeUtils.cs.meta ├── package.json └── package.json.meta /.idea/.idea.GameFoundation.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/.idea.GameFoundation.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/.idea.GameFoundation.dir/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/.idea.GameFoundation.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BuildScripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9083deeb1924422a7f84a6d5c45f864 3 | timeCreated: 1669769047 -------------------------------------------------------------------------------- /BuildScripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64dcd43ccc464eecb078b2b3647aef02 3 | timeCreated: 1669767466 -------------------------------------------------------------------------------- /BuildScripts/Editor/Build.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b934da937e21484081ea13d90d975fd5 3 | timeCreated: 1669767466 -------------------------------------------------------------------------------- /BuildScripts/Editor/BuildMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65cb601da1804cb1b2f084e504999cb6 3 | timeCreated: 1669767467 -------------------------------------------------------------------------------- /BuildScripts/Editor/BuildScript.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee3cf4f47a0b24746a86c5f83559e1ed 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /BuildScripts/Editor/BuildTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2caa283bf1114c90aab9e6e2642f2cb3 3 | timeCreated: 1669767467 -------------------------------------------------------------------------------- /BuildScripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3aa11cefa34e486ea8ebd3e53484ccd9 3 | timeCreated: 1669769179 -------------------------------------------------------------------------------- /BuildScripts/Runtime/BuildScript.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BuildScript.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /BuildScripts/Runtime/BuildScript.Runtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8415b30aa8702f4d971c56084f54ab1 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /BuildScripts/Runtime/GameVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce1ef99e80a46aaaf0728dc4b7180c1 3 | timeCreated: 1669768317 -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b222ec74f8264e8f97cbe5e2e1bbdc69 3 | timeCreated: 1638955523 -------------------------------------------------------------------------------- /Editor/GDKManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7739bac13254b51a5392ea5e2d2799e 3 | timeCreated: 1665204182 -------------------------------------------------------------------------------- /Editor/GDKManager/BaseGameConfigEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b2100724229437592f4674057b36811 3 | timeCreated: 1665220808 -------------------------------------------------------------------------------- /Editor/GDKManager/GDKManager.uss: -------------------------------------------------------------------------------- 1 | Label { 2 | font-size: 20px; 3 | -unity-font-style: bold; 4 | color: rgb(68, 138, 255); 5 | } -------------------------------------------------------------------------------- /Editor/GDKManager/GDKManager.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f977525425f48e48f2c74277c817de7 3 | timeCreated: 1665204190 -------------------------------------------------------------------------------- /Editor/GDKManager/GDKManager.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7da10812f11492d94d2a8197b7858e3 3 | timeCreated: 1665204190 -------------------------------------------------------------------------------- /Editor/GDKManager/GDKManagerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 386105fbde734f40b556c325904826a5 3 | timeCreated: 1665204190 -------------------------------------------------------------------------------- /Editor/GDKManager/UIToolkitExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9971568f508f476b82d7f54798452cc7 3 | timeCreated: 1665204190 -------------------------------------------------------------------------------- /Editor/GameFoundation.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fb502a035ef09f40a13058b262bca57 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Editor/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b729b939d754049b61355efcd69610a 3 | timeCreated: 1665204166 -------------------------------------------------------------------------------- /Editor/Misc/EditorUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 024266bf49a74c5cbe57a38ba4b194b2 3 | timeCreated: 1666083843 -------------------------------------------------------------------------------- /Editor/Misc/NonDrawingGraphicEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b15862efae8d48c78c6792a52e80b81d 3 | timeCreated: 1660619301 -------------------------------------------------------------------------------- /Editor/Misc/SceneToolBarExtend.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22403e0b1930431e914542ca86a999c0 3 | timeCreated: 1684296780 -------------------------------------------------------------------------------- /Editor/Misc/ToolbarUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 490ea9f27a84481a9ef925a1d769280f 3 | timeCreated: 1666086238 -------------------------------------------------------------------------------- /Editor/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2d2a0c55e7cd3c4a86a5cb76ea2c029 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Tools/ViewCreatorWizard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6793e9350b55d3e46a26988dacdced32 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Tools/ViewCreatorWizard/ViewCreatorTemplates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf5fd3d1a879425894e5ed5567ae17b8 3 | timeCreated: 1670156389 -------------------------------------------------------------------------------- /Editor/Tools/ViewCreatorWizard/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Editor/Tools/ViewCreatorWizard/icon_folder.png -------------------------------------------------------------------------------- /Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c4c1e1fc070e043945e8fdd170e00a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33bc9e8ca0ae2b948a2289e7d5c385ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e2b9e0b05cd46742b7335534c9e4c79 3 | folderAsset: yes 4 | timeCreated: 1638563677 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d54514acc81b2a145a0e00ee72f2e788 3 | folderAsset: yes 4 | timeCreated: 1638553694 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac20f410e37ade84db5ee4df0fa3d532 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2055763552d0da943976b25188d43e2d 3 | folderAsset: yes 4 | timeCreated: 1595242331 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8110e5b59d0a8d040a983dee046150c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a73dc4969019c44fb118bab0c6295a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/ExampleItemPrefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2affa7ba87dc90548b51e9a3eeda034a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/ExampleItemPrefabs/BasicGridAdapterItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fcae5defad2dcf4c8805a5d43f70d28 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/ExampleItemPrefabs/BasicListAdapterItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef9d112c3d8fccd4a8acad4338a5a979 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab16386025073b43a58bcfae036909d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/ScriptsChunks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512afcf64a8e1ac4fa94859bac18bf35 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/ScriptsChunks/HeaderComment.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 075637a35aaed5d47b2bba6de7f13727 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/Scrollbars.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de91300a8c31b447afe548747ab2559 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/Scrollbars/HorizontalScrollbar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d85e94d622847e448adf52587789df2 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Resources/Com.TheFallenGames/OSA/Templates/Scrollbars/VerticalScrollbar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee2574d0ef4f55544acf5a78b1718fe8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4a37c1de424a6438ff8917bc93f29c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/MenuItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e27ab58c909df14dbf4a9f21dd2d3a7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSA.Core.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OSA.Core.Editor", 3 | "references": [ 4 | "OSA.Core" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ], 9 | "excludePlatforms": [] 10 | } -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSA.Core.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ba77581478a56c45af946447abe2bba 3 | timeCreated: 1552496779 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSAWizard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 616bf5076356e6c4d8f91b62d35eac78 3 | folderAsset: yes 4 | timeCreated: 1563725050 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSAWizard/BaseOSAWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ba41aae4d93c24aa91797b057972e1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSAWizard/CWiz.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0709b76fd7bc2e4fa323fedb2038dc7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSAWizard/CreateOSAWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68a8d3f524285644199caf4460fbcdc6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Scripts/OSAWizard/InitOSAWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 501689534c65018409280bb239f0b15c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c24f5b7faae040646a58ba31fc6d8b07 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Textures/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Com.TheFallenGames/OSA/Core/Editor/Textures/gradient.png -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Editor/Textures/osa-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Com.TheFallenGames/OSA/Core/Editor/Textures/osa-icon.png -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7a943af8854c5f41b5affbb37960f1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/AdditionalComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d04db0e060b8d14fae509af2b9c3e92 3 | folderAsset: yes 4 | timeCreated: 1553129474 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dd60ca44ca2acc4d9cedcc04484e754 3 | folderAsset: yes 4 | timeCreated: 1532022814 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/AbstractViewsHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd48f5a30172f504c88bd48eb734ba81 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/BaseItemViewsHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647a4d2739c0ec14993eff7dc6ed4ea9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/BaseParams.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09e9165bf6b8b0a489a277761c5e0d83 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e03335a3112b26a4e8b36f509b1b5787 3 | folderAsset: yes 4 | timeCreated: 1562749645 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/Data/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a883c623f6081545a247b9417505ccf 3 | folderAsset: yes 4 | timeCreated: 1580308561 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/Data/Gallery.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d42d3c6b47c0aef4c92c77f577ccf008 3 | folderAsset: yes 4 | timeCreated: 1562765423 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/ItemCountChangeMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29ba49e0112c03b4fa9ae6265edd6d53 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/ItemsDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d1dbaeb967910a45a2fd6629aa13805 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/OSASubComponents.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Com.TheFallenGames.OSA.Core 3 | { 4 | [System.Obsolete("Everything inside this class was moved to the Core.SubComponents namespace", true)] 5 | internal class SubComponentss 6 | {} 7 | } 8 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/Snapper8.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8065e158a2f5e9848a9d0b7a7ceabfde 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/SubComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 010dc23f3263f064383d219ea31d7608 3 | folderAsset: yes 4 | timeCreated: 1552499908 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Core/SubComponents/AllowContentOutsideBoundsMode.cs: -------------------------------------------------------------------------------- 1 | namespace Com.TheFallenGames.OSA.Core.SubComponents 2 | { 3 | internal enum AllowContentOutsideBoundsMode 4 | { 5 | DO_NOT_ALLOW, 6 | ALLOW_IF_OUTSIDE_AMOUNT_SHRINKS, 7 | ALLOW 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4ed183be0aca3c41a0a0e789672ecd5 3 | folderAsset: yes 4 | timeCreated: 1532024237 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters/GridView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 077c26f130d5de74790aaa72507744e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters/GridView/CellGroupViewsHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68039c8443b79c4468368c68dc7a8819 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters/GridView/CellViewsHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dcd252490eb8bf41b80f876c3d30076 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters/GridView/GridAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b2efbbda4f4f6b4e938f1d17c2836cc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomAdapters/GridView/GridParams.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d64c70df48fe51447860c098f4dc359e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/CustomParams.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8667ceaad610ed641b78e3051dc58ea6 3 | folderAsset: yes 4 | timeCreated: 1532021437 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/DataHelpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4886f385a56d18b4887842e24cbfb8c8 3 | folderAsset: yes 4 | timeCreated: 1532098971 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/DataHelpers/LazyList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca386b979bca8e04bb032024010162e6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/OSA.Core.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OSA.Core", 3 | "references": [], 4 | "includePlatforms": [], 5 | "excludePlatforms": [] 6 | } -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/OSA.Core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 570288d68c06d364a82f87aca0bc1a34 3 | timeCreated: 1552496227 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6822c8648619cc429c66a7c822bb355 3 | folderAsset: yes 4 | timeCreated: 1553129474 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/Util/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21bf3d1eea820a541b6eac4b6c6d94b4 3 | folderAsset: yes 4 | timeCreated: 1580310809 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaf628ab8c71fc04b91bd90ee4a9940f 3 | folderAsset: yes 4 | timeCreated: 1532022896 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76f2fadf7903d7d4d8497e38dca5d93f 3 | folderAsset: yes 4 | timeCreated: 1530874741 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/Common/IInitializable8.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace frame8.Logic.Core.Interfaces 4 | { 5 | public interface IInitializable8 6 | { 7 | void Init(); 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/DotNETCoreCompat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd4e866cc914f264eb8173303ad6298b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f2c67a2183dc8e45b895720f02515fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/Extensions/RectTransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1337f1c81772ab459803adbc1740c0d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/IScrollRectProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b8016c580cee846a5173a9bfd0d9a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/ScrollbarFixer8.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44e790c2efca8bf4bad58426460858d9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | # frame8 is our internal library for Unity that's used in multiple projects. 3 | # This file is an indicator of what version of the library we use. 4 | # We cannot import the whole frame8 library because most of its files won't be used -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Core/Scripts/frame8/version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c996d1b25cd67d54cb9f33dd9cc6fd0b 3 | timeCreated: 1616655574 4 | licenseType: Store 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Docs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c638d104f7a6b346af5f3a5bd3ce713 3 | folderAsset: yes 4 | timeCreated: 1459266704 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Docs/Manual link.txt: -------------------------------------------------------------------------------- 1 | Tools->OSA->Manual: https://docs.google.com/document/d/1tlMIzRX1OFEusVAoHm14_wloXukOt9llohCQzmnNbts -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Docs/Manual link.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d0a3780a09dc34478273f42d1449e80 3 | timeCreated: 1530735289 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cee77f12504829b4093786c188f9e753 3 | folderAsset: yes 4 | timeCreated: 1553102737 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26b9b4010235b54ca7a6c4e6f23072f 3 | folderAsset: yes 4 | timeCreated: 1542050063 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/Playmaker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6791580bb5da52c4f8ad8e62548b0792 3 | folderAsset: yes 4 | timeCreated: 1542050069 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/Playmaker/PlaymakerSupport.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/Playmaker/PlaymakerSupport.zip -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/Playmaker/PlaymakerSupport.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3887e9a653188c741bfbf85729a9ae28 3 | timeCreated: 1542741010 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/Playmaker/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22cdfadf90754974eac79b3d005d6b44 3 | timeCreated: 1542052622 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/TMPro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29a12870007112842909c61e4ed1481a 3 | folderAsset: yes 4 | timeCreated: 1563652017 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/PluginSupport/TMPro/TMPro instructions.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 028e2ef88a4b1a6409172e68ccc66730 3 | timeCreated: 1563652017 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Com.TheFallenGames/OSA/Extra/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 886b13fb40443eb488fc7ce09cd50cac 3 | timeCreated: 1553184203 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/I2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf79f87ce40a9f04c8f5ee2e70021fa2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/I2/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2ae8bac67f85864caa222a581062472 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/I2 Localization - Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b559e47b4c944104abfbfb9c64dc13bc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 379147f1ab5034075a5b1578456aca00 3 | folderAsset: yes 4 | timeCreated: 1461137613 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Configurables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f9a3530624fd5c47a2dc16eb641ddb8 3 | folderAsset: yes 4 | timeCreated: 1520745251 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c123c665b73ed7c4999162c0d009550d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/EditorTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df33c1000ac895241a433812e40a2096 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/I2Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18e8cfaba4698cb4ab2a99b7e0c39931 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a500716e59f61824ba1fa6b418ce31a7 3 | folderAsset: yes 4 | timeCreated: 1461137613 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad136296e8e6e14eaa2726ac1992b6c 3 | folderAsset: yes 4 | timeCreated: 1461137613 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/Unity XCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9276efd8270b104ea614946e5787aa1 3 | folderAsset: yes 4 | timeCreated: 1489466610 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/Unity XCode/UnityEditor.iOS_I2Loc.Xcode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/I2/Localization/Scripts/Editor/Unity XCode/UnityEditor.iOS_I2Loc.Xcode.dll -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Editor/Unity XCode/Xcode.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f2eff1a75746804db6c0240420ebed9 3 | timeCreated: 1489466907 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Google.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dda5008126b59ad4bad4c9d2626a2345 3 | folderAsset: yes 4 | timeCreated: 1461137613 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/I2Localization.Scripts.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a20af7af6f3e3344ae63e9eaa47a127 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/LanguageSource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75c7654f6d20207418b4cbce1b29906d 3 | folderAsset: yes 4 | timeCreated: 1518833279 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Localize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 344445a89b4f74a0e9a0a766903df87e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Manager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba131beaf0aba9d4084aff4ea6e742c3 3 | folderAsset: yes 4 | timeCreated: 1516397531 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Targets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42f01c2f8a9800c4aa5ada53bc13bccd 3 | folderAsset: yes 4 | timeCreated: 1461137613 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Targets/LocalizeTarget_UnityStandard_VideoPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fcaa99c1874460eb953851cbf4bfad2 3 | timeCreated: 1601759602 -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23035eaab7d1f024cb7e7b5bae9b078f 3 | folderAsset: yes 4 | timeCreated: 1478234053 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Utils/RegisterCallback_AllowSyncFromGoogle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 893c292e5fa149cf965cc68e2d471396 3 | timeCreated: 1601758486 -------------------------------------------------------------------------------- /Plugins/I2/Localization/Scripts/Utils/RegisterGlobalParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31f3671f793c32f47b37480ed345e8fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cd4b2dc0a2d94065bbf4ec273c3816b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7d17cc01badd084cb6b9f7806e16fc6 3 | folderAsset: yes 4 | timeCreated: 1474981563 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/CHANGELOG.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5a3f80713b8e364e883263b67113edf 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/LeTai.TranslucentImage.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff218ee40fe2b8648ab3234d56415557 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb706d61f651d684c9203dc86e5f7331 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Material/Overlay Translucent Image.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3280c6a87b6fc9b44b1b693e52dc007f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Offline Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Le Tai's Asset/TranslucentImage/Offline Documentation.pdf -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Offline Documentation.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92a39630ef232a9459d20d55dd312799 3 | timeCreated: 1541066439 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Online Documentation (recommended).txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54274fce3b51a88468a41e332f5de0a5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c261078fb1a4da458b96776e33f88b1 3 | folderAsset: yes 4 | timeCreated: 1474981572 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources/FillCrop.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d996ab4381100014d99e25e68e9aac84 3 | timeCreated: 1540802700 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources/UniversalRP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf78a7acb2cf96c468f81fe121a3301f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources/UniversalRP/lib.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005bb204b9b54cb7868e1aa065f00838 3 | timeCreated: 1562251098 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources/common.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0f93ce7a1dcd4341947566d67947b0d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Resources/lib.cginc: -------------------------------------------------------------------------------- 1 | #include 2 | #include "common.hlsl" 3 | 4 | #define SAMPLE_SCREEN_TEX(tex, uv) UNITY_SAMPLE_SCREENSPACE_TEXTURE(tex, UnityStereoTransformScreenSpaceTex(uv)) 5 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f086af857f26faa4ea62ddf64d9f44ec 3 | folderAsset: yes 4 | timeCreated: 1474981551 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/BlurAlgorithm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f164c4c349ef428f8c7537ba4218516d 3 | timeCreated: 1560157255 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/BlurAlgorithm/BlurConfig.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace LeTai.Asset.TranslucentImage 4 | { 5 | public class BlurConfig : ScriptableObject 6 | { 7 | 8 | } 9 | } -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/BlurAlgorithm/IBlurAlgorithm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf12665875748ef9dd9416b900b5143 3 | timeCreated: 1558514104 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/BlurAlgorithm/ScalableBlur.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4406fc9923f04f9caf40ac4f57cb0eba 3 | timeCreated: 1558514023 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ffad624d21be844dbf9ce8159d864d1 3 | folderAsset: yes 4 | timeCreated: 1475503998 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/LeTai.TranslucentImage.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd721a6e0b119447afc3819b9015b13 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ace044fc6a6bf3649a39e77c7a77f6c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/BlurConfig Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/BlurConfig Icon.png -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/BlurSource Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/BlurSource Icon.png -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/TranslucentImage Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Resources/TranslucentImage Icon.png -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/ScalableBlurConfigEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 771a13bc1eb042bc9d4ad186dd99dda5 3 | timeCreated: 1560160054 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/ScenceGizmoAutoDisable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3c5df780c45454e820502d48a07db97 3 | timeCreated: 1575814101 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Editor/Unity2019ShaderCompilerBugWorkaround.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb015e0abde84fd19af30c2bb2847361 3 | timeCreated: 1624351629 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/TrueShadowCompat.cs: -------------------------------------------------------------------------------- 1 | #if LETAI_TRUESHADOW 2 | 3 | using LeTai.TrueShadow.PluginInterfaces; 4 | 5 | namespace LeTai.Asset.TranslucentImage 6 | { 7 | public partial class TranslucentImage : ITrueShadowCustomHashProvider { } 8 | } 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/TrueShadowCompat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11c1c8c5084246f884409330a477c153 3 | timeCreated: 1688045792 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/UniversalRP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa3650b00009764888b5f90e8ec5241 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/UniversalRP/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bba7ceb326d957d49bbc675bdf0856c0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/UniversalRP/Editor/LeTai.TranslucentImage.UniversalRP.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eba807230e676224b8e8e5b8859b2e7c 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/UniversalRP/LeTai.TranslucentImage.UniversalRP.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e646286fd75dc0f44bb2f84ffb34408d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/UniversalRP/Render Pass.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59db9d0cfd142494ab067fbfbb1f1b6a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e922b2483fd9e164ebbd098b4e9f7822 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Utilities/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29b4a2967894477c93934b7e21ce2d5b 3 | timeCreated: 1558521365 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/Script/Utilities/ShaderId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e531f31ceeeb4a2d99d46564b2754c17 3 | timeCreated: 1558518328 -------------------------------------------------------------------------------- /Plugins/Le Tai's Asset/TranslucentImage/UniversalRP README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b12c9ba0e5d5cab45a39404b57693e5b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db84c72b2408b24da5a225550b562ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05b1eef81f23d6648992c93437892982 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa3dc305dd00dad49bbc1ff3996b055d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEditor/Sirenix.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/NoEditor/Sirenix.Serialization.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEditor/Sirenix.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/NoEditor/Sirenix.Utilities.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEmitAndNoEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a73a691127ad93941b89586292291dab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEmitAndNoEditor/Sirenix.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/NoEmitAndNoEditor/Sirenix.Serialization.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/NoEmitAndNoEditor/Sirenix.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/NoEmitAndNoEditor/Sirenix.Utilities.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Attributes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Attributes.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Attributes.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47a84ebde4ec47fabb620b30cc7a096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Editor.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Editor.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4865f1ab4504ed8a368670db22f096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Reflection.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.Reflection.Editor.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Serialization.Config.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.Serialization.Config.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Serialization.Config.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74721b9f0af448f5ae2e91102a1a096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.Serialization.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Serialization.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3147f7af4c49739579b966c458096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Utilities.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.Utilities.Editor.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Utilities.Editor.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c65184932ff4fd48a343e236025096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Assemblies/Sirenix.Utilities.dll -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/Sirenix.Utilities.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4873f2a8bdae42baa0406e8a6136096f 3 | timeCreated: 1488828285 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Assemblies/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bec01331befdea4d9ed9033eabd68f8 3 | timeCreated: 1613046886 4 | TextScriptImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39584688cfac6ff44bd94124e5bc1ca7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe4970195facd664dbd38d1cbf2100c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52c0fd243c6c01e4d9efa03616b655d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85e532eecf67ab545b2a5a28f1a22894 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor/Bootstrap License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fdc67fad3e362e47b5dd365a0bbdd7f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor/ConfigData.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Assets/Editor/ConfigData.bytes -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor/ConfigData.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90eaa0dc28c1934408dc1c02e13a507f 3 | timeCreated: 1628274352 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor/OdinPathLookup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08379ccefc05200459f90a1c0711a340 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Assets/Editor/SdfIconAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Assets/Editor/SdfIconAtlas.png -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a445c551fdb7899429a21c100b70011e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Config/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d573ec247b8d9f14fbf71ea94906ef02 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Config/Editor/GeneralDrawerConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a592a1bbd5813c4eaeb8ee296a48f3c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Config/Editor/InspectorConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e54aaa982d216e43956f4c452c4c6f1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Config/Editor/OdinModuleConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81ac6535988a0446a5388ea815244b6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 356a67db9bc6244428bcd2aad1eefbda 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Addressables.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Modules/Unity.Addressables.data -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Addressables.data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92d0eb8b980c6d44b5f0e64a620355b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Entities.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Modules/Unity.Entities.data -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Entities.data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728df0e3465c1a148b83053a3f31d489 3 | timeCreated: 1573836981 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Localization.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Modules/Unity.Localization.data -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Localization.data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a1693d73a4f6e34d955789129c71e11 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Mathematics.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Sirenix/Odin Inspector/Modules/Unity.Mathematics.data -------------------------------------------------------------------------------- /Plugins/Sirenix/Odin Inspector/Modules/Unity.Mathematics.data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4866e740a22eb1e49b1603b051e4d92c 3 | timeCreated: 1573836980 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Sirenix/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e957a9e8b4f4bce4b8a34e504a8c39d7 3 | timeCreated: 1533815770 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Plugins/Zenject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d9745ae3e633742bfac1028c2b5636 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75406829aaca6154491302d85b26270a 3 | timeCreated: 1427860624 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70ffae629cf5764fbc95aaeeb64884d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/AutoMocking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/AutoMocking.zip -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/AutoMocking.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aeabfd115c8a4b0ea6377d7970134a2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/AutoSubstitute.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/AutoSubstitute.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d9bd58f4dad04d4aa76be96981ea7d1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8d518813058ccd4c8ce2eb0a99748b5 3 | folderAsset: yes 4 | timeCreated: 1462057592 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f6f9d65a88fb494aab5df05742f31f1 3 | folderAsset: yes 4 | timeCreated: 1476626359 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Gorp.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromComponentInHierarchyGameObjectContext 4 | { 5 | public class Gorp : MonoBehaviour 6 | { 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromGameObjectInstaller 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd55361784401314ab1c348b1eaf6ca4 3 | folderAsset: yes 4 | timeCreated: 1476623442 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefab 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Foo.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefab 4 | { 5 | public interface IFoo 6 | { 7 | } 8 | 9 | public class Foo : MonoBehaviour, IFoo 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefab 4 | { 5 | public interface INorf 6 | { 7 | } 8 | 9 | public class Norf : MonoBehaviour, INorf 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf2.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefab 4 | { 5 | public class Norf2 : MonoBehaviour, INorf 6 | { 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefabInstaller 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefabResource 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Foo.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefabResource 4 | { 5 | public interface IFoo 6 | { 7 | } 8 | 9 | public class Foo : MonoBehaviour, IFoo 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf2.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromPrefabResource 4 | { 5 | public class Norf2 : MonoBehaviour, INorf 6 | { 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromSubContainerPrefab 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject.Tests.Bindings.FromSubContainerPrefab 2 | { 3 | public class Gorp 4 | { 5 | } 6 | } 7 | 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Bar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource 4 | { 5 | public class Bar : MonoBehaviour 6 | { 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource 2 | { 3 | public class Gorp 4 | { 5 | } 6 | } 7 | 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58233303e8aad274bb44223c4fe67d5e 3 | folderAsset: yes 4 | timeCreated: 1476626394 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc7d7c70b60a2a14eb9d59f39df3d01b 3 | folderAsset: yes 4 | timeCreated: 1476627232 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f79b169ed165643b8e9c8853fa69f2 3 | folderAsset: yes 4 | timeCreated: 1476628483 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactory/Bar.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c910fc8c1b89e63428292071be74fb96 3 | timeCreated: 1487537775 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactory/Camera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b06f8082448e80458c9e2a87fef6131 3 | timeCreated: 1486607599 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactory/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f6c6b0b26248ff40ab262d17954f3cd 3 | timeCreated: 1459026819 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactory/TestTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactory/TestTexture.png -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactoryFive/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c07ac3e518881e48885b91850c2f13c 3 | timeCreated: 1460650304 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactoryOne/Bar.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3195625194709c24a87cef5b84dd5971 3 | timeCreated: 1487541016 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestBindFactoryOne/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95afbeacc839e0a4da5a6e116f07052e 3 | timeCreated: 1459037082 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestPrefabFactory/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54246954ae9afed40ad0e818f0d1702c 3 | timeCreated: 1461166035 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/Resources/TestPrefabFactory/Foo2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09df71f19c7dd5648a2e32abb6769e49 3 | timeCreated: 1461166035 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d625b6f595523d4a93a7e3a44843f00 3 | folderAsset: yes 4 | timeCreated: 1476627237 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Installers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e689164905f0434c850b66d3b3ea3e8 3 | folderAsset: yes 4 | timeCreated: 1476628768 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8b1b8dc74b17447889379c8396f200 3 | folderAsset: yes 4 | timeCreated: 1476629271 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f643275d35e53454ebe6af5fe67e3736 3 | folderAsset: yes 4 | timeCreated: 1476629271 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Gorp.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.AutoInjecter 4 | { 5 | public class Gorp : MonoBehaviour 6 | { 7 | [Inject] 8 | public DiContainer Container; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Qux.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Zenject.Tests.AutoInjecter 4 | { 5 | public class Qux : MonoBehaviour 6 | { 7 | [Inject] 8 | public DiContainer Container; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestBindGameObject/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a507f278d3b56e4ba1fd4f1c9b28d25 3 | timeCreated: 1459207171 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestDiContainerMethods/Camera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e8cb14a39fd6f249a44c7943b3fa7c0 3 | timeCreated: 1486605718 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestDiContainerMethods/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d193bc261e49cce4eb82e05b80485388 3 | timeCreated: 1486605527 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestDiContainerMethods/Foo2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b8ab53bbd8332e429a6f0ed1dd3fe16 3 | timeCreated: 1486678058 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestDiContainerMethods/Gorp.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 956d91076f66be1488d99299c06d37b8 3 | timeCreated: 1486605550 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestDiContainerMethods/Gorp2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de8d2dce06221cc4cb9fa957aebc8f15 3 | timeCreated: 1486678064 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 881211ac3ab7abc43ac341ad60e1e925 3 | folderAsset: yes 4 | timeCreated: 1476624500 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d3811faab260ce4dab063fd012b42b5 3 | timeCreated: 1454692704 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/Foo2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0fc7ecead470be4d8ac1114be3d9d62 3 | timeCreated: 1458261082 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/Gorp.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eb53b39cb1d1114782475a86c1e55f1 3 | timeCreated: 1459002680 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/GorpAndQux.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e9c6984a3aba946bdf015abbc6488f 3 | timeCreated: 1459002680 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/JimAndBob.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1592e529a326aad4b8a0a8c4640f000e 3 | timeCreated: 1459009683 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefab/Norf.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f9121b460e6fb541a5dfd7384d5c03a 3 | timeCreated: 1459008724 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f35ac9a6aa0dab64bafb5461a8fd393a 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/Foo2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54bc08272e3f439458c8c656d27da5bc 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/Gorp.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889ca6448cbd11b4a9fd4511513f21ac 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/GorpAndQux.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfe2502efa3e0b3438c53be39dad6c3c 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/JimAndBob.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588f499d9ffe8944da19657e601ffa61 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromPrefabResource/Norf.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4833165ddddda347b80b96e1a704b4e 3 | timeCreated: 1459015737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromResource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2380e0f3264c94b86ad2adc246dc7a 3 | folderAsset: yes 4 | timeCreated: 1476625641 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromResource/TestTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromResource/TestTexture.png -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromResource/TestTexture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromResource/TestTexture2.png -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromSubContainerPrefab/CircFoo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb52c8a0d347f4445baea1484a14398e 3 | timeCreated: 1460509291 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromSubContainerPrefab/Foo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878b989aa92d3654f8507e4880b04678 3 | timeCreated: 1460509291 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Resources/TestFromSubContainerPrefab/Foo2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeca357a223feba47a38a2791b095fc3 3 | timeCreated: 1476637402 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503a300139444eda80c6549ec29b3b20 3 | timeCreated: 1587924687 -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 983f0bc44f6541bfab062ceec72231d3 3 | timeCreated: 1587867811 -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1e7aba83a28e454586d8f515cb89534 3 | folderAsset: yes 4 | timeCreated: 1476628598 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/TriangleDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/TriangleDown.png -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/TriangleUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/TriangleUp.png -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/ReflectionBaking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c269d209df5c19940a2cf8c1ae365768 3 | folderAsset: yes 4 | timeCreated: 1537245053 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/ReflectionBaking/Lib/Zenject.ReflectionBaking.Mono.Cecil.dll -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/Signals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b5451f8192289f4d91b4764b30bf5e4 3 | folderAsset: yes 4 | timeCreated: 1521300601 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/Signals/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab31f5a16678ab042ae89fdbb0efec56 3 | folderAsset: yes 4 | timeCreated: 1521266917 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/Signals/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb190b1462cf04478644ba25fb51df0 3 | folderAsset: yes 4 | timeCreated: 1521266917 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/Signals/Zenject-Signals.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f072e216975d56b4f9ab0e22fb7a76a5 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/TestFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd37a6fe62077344583c1ff10a2f0962 3 | folderAsset: yes 4 | timeCreated: 1520787886 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/TestFramework/ValidateOnlyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Zenject 4 | { 5 | [AttributeUsage(AttributeTargets.Method)] 6 | public class ValidateOnlyAttribute : Attribute 7 | { 8 | } 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7378a2249be3cab40bbebc680d8a6122 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d55b2694c783d147a989babca92c7bf 3 | folderAsset: yes 4 | timeCreated: 1461799712 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a25b85a8c5c0f2b42a1eec620b699e8a 3 | folderAsset: yes 4 | timeCreated: 1461711436 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12da5cd15bf088a46ba2934227c0334b 3 | folderAsset: yes 4 | timeCreated: 1461711435 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a01ea76b569d29e408de9e06455bc52f 3 | folderAsset: yes 4 | timeCreated: 1461711436 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a06a3cca4f04a6245a9def6d9505c530 3 | folderAsset: yes 4 | timeCreated: 1462372161 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/FooMore.cs: -------------------------------------------------------------------------------- 1 | #if !(UNITY_WSA && ENABLE_DOTNET) 2 | 3 | namespace Zenject.Tests.Convention.NamespaceTest 4 | { 5 | public class Bar 6 | { 7 | } 8 | 9 | public class Foo4 : IFoo 10 | { 11 | } 12 | } 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc0d4125f5cf5cd45b5d13defb47da01 3 | folderAsset: yes 4 | timeCreated: 1461711436 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e3c408f00aae61468d936ac29f004d1 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/IFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0da738c2fd2093f4db191a5593a83638 3 | folderAsset: yes 4 | timeCreated: 1461873578 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 502e37656c94f6b44b555b11dcf431c1 3 | folderAsset: yes 4 | timeCreated: 1461711435 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc7f3f51b1ad79f409addb115d2857a7 3 | folderAsset: yes 4 | timeCreated: 1461711436 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6caf5b6d3f510041b368113d86f4459 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/Editor/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c70a9f9b8bf86e4dab45a65e62bda60 3 | folderAsset: yes 4 | timeCreated: 1461711435 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | Note that the UnitTests here require that you also include the TestingFramework folder in your project as well. 3 | 4 | -------------------------------------------------------------------------------- /Plugins/Zenject/OptionalExtras/UnitTests/ReadMe.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f3e3f9dfc5945a409244fec02c55536 3 | timeCreated: 1465496279 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/ReadMe.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/svermeulen/Extenject 3 | -------------------------------------------------------------------------------- /Plugins/Zenject/ReadMe.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 937aea47cf7f0864cb39571ca85e205d 3 | timeCreated: 1529238438 4 | licenseType: Store 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9180a9720c42cb94f9b30a7c0c938d90 3 | folderAsset: yes 4 | timeCreated: 1452188407 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e92094ea8d3ee634f858163622b6abbb 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/BindInfo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a78a183f887b72e45b2ec6d77fb514d8 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0d343c02f9d0a488a62abffae00ceb 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/ConcreteBinders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b29de51c8625443984cbd926505d00 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Conventions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cecd58a5468ced54aabe6cc4d2eed9a8 3 | folderAsset: yes 4 | timeCreated: 1462127452 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Factory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 580f48a64cf849041937c7ad570aaf89 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa754ab1fdfa8714fb6eddd17108e5c6 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1f8d57baff273344a3f10da1e51b772 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad3cf76cc0b1c154e868ae8b570a78b8 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/Factory/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a019116e68c18f342995df14d6fbcf87 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/FromBinders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62c8a25fc0c5d34680c100f745a80e1 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Binders/GameObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a5ff7e3b16416245acfcd6be217a53f 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Binding/Finalizers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95ed99f2cba5359419d007822a4c0c31 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a96473817a0384580ace78f202a622 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Editor/EditorWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd8d602c69b71714babee52a2d454aed 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Editor/Editors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbb1477b2e261944dad77cce5626aab0 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02bed9738f9c4323ac05524465473dee 3 | timeCreated: 1494728675 -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0acddb179989574c8355991596bd3e6 3 | timeCreated: 1531030222 4 | licenseType: Store 5 | AssemblyDefinitionImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2750a8b0a1173074e9387536c12de4f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Factories/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f3fb191ad2b6c74c97f488543a89c82 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Factories/Pooling/Static.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d06bc0b4cdf374ca41d78b0ec5dc0a 3 | folderAsset: yes 4 | timeCreated: 1515014902 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Factories/Pooling/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6214acccd2e0c2044921cc068fb3d0a6 3 | folderAsset: yes 4 | timeCreated: 1520607639 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36c66e30e287cf48b9bb264d4924562 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Install.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a15b3ef3a9656b4f85216520ae9b180 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Install/Contexts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc41c06067fc1d4479c3b85aa2707cfb 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13e9b26d23f6422cb282cc27631fc9e2 3 | timeCreated: 1494725784 -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd4fbc001f8bada428bbe3af6b6b21e8 3 | folderAsset: yes 4 | timeCreated: 1452188408 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Internal/PreserveAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ModestTree.Util 4 | { 5 | [AttributeUsage(AttributeTargets.All, AllowMultiple = false)] 6 | public class PreserveAttribute : Attribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f870edd43b85f4dae7b77cc0d75b46 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5ba0ff0ad7f874f8938a3266c21d4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/ComponentProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d80a7db637267834388a31f2b7ddcf36 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/Decorator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88c8658f07bf600408a596245682c306 3 | folderAsset: yes 4 | timeCreated: 1528368268 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/GameObjectProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4a4be4639cdfc4c8d00456887fefb6 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/PrefabCreators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a029f9358245bf4e99fcb7fcc19ba28 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/PrefabProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4248afcd0d89aa54da8d2c34a41c5712 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs: -------------------------------------------------------------------------------- 1 | #if !NOT_UNITY3D 2 | 3 | namespace Zenject 4 | { 5 | public interface IPrefabProvider 6 | { 7 | UnityEngine.Object GetPrefab(InjectContext context); 8 | } 9 | } 10 | 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Providers/SubContainerCreators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60492d3348bd7624a9f7f00d1e20ae8e 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9242e26ea385743abb8476b18d1e9f 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/AnimatorInterfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c5ae8c1093da554d8bf77c912cc5433 3 | folderAsset: yes 4 | timeCreated: 1487820668 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorIkHandler 4 | { 5 | void OnAnimatorIk(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorMoveHandler 4 | { 5 | void OnAnimatorMove(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/Kernels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 605550c45d7550e498dfe6968192459d 3 | folderAsset: yes 4 | timeCreated: 1462650136 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f054684b4d0f44a1904823270ae3f137 3 | timeCreated: 1587868417 -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs: -------------------------------------------------------------------------------- 1 | #if !NOT_UNITY3D 2 | 3 | namespace Zenject 4 | { 5 | public class DefaultGameObjectKernel : MonoKernel 6 | { 7 | } 8 | } 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Usage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5896143fdd47624ebc6ddd933f1ed1b 3 | folderAsset: yes 4 | timeCreated: 1427464099 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Usage/Zenject-usage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameDevelopmentKit/GameFoundation/a3c59bf73e443d6bf8e3db18dd1f960f29d209ce/Plugins/Zenject/Source/Usage/Zenject-usage.dll -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Usage/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Usage/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78cde942f7000eb41900aa4d3c9249d7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f550a9d7385fce4e9bc4a0e5fa52daf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Validation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 577ec212adf31e04bbd46b24f633f1e3 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Validation/IValidatable.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IValidatable 4 | { 5 | void Validate(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Zenject-Source.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject-Source" 3 | } 4 | -------------------------------------------------------------------------------- /Plugins/Zenject/Source/Zenject-Source.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d364aeb8f41c2942a00b8ba2492258f 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Plugins/Zenject/Version.txt: -------------------------------------------------------------------------------- 1 | 9.2.0 2 | -------------------------------------------------------------------------------- /Plugins/Zenject/Version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4917e73af158b1e4782b175c0568afcf 3 | timeCreated: 1452175972 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/package.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "name": "com.mathijsbakker.extenject", 4 | "displayName": "Extenject", 5 | "version": "9.2.0", 6 | "description": "Dependency Injection Framework for Unity3D", 7 | "unity": "2019.3" 8 | } 9 | -------------------------------------------------------------------------------- /Plugins/Zenject/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5ee7f1788474bd44a48b0a201461151 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4387edceee66ec046b92a4044346f5d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b85fc9f6bc4f424582cbc1024f7941b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab/PopupBlurBG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52cd5be70716ec740960d13ae1826bb4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab/PoupBlurBGBlurConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f1ca66c2e365c14c9205e533aca13c1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab/RootUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1393711bdff296049973fdd75178b739 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab/UIBasePopup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b408a90a7a8cfd42afa7d58181be28a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Prefabs/CommonUIPrefab/UIBaseScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f431abb86d3b6c43af971de5b1f2833 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30786afd4d182a34282e61cb3eba84b9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a2f62742e8550a4cab0e730a12433ba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Resources/GameFoundationAudio.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b1b05b81d31b33418fec413c84435a9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Resources/GameFoundationPlaylistController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05c1619abe86d344e9ee89b4ae6917ce 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a4e01cde6f2b434ca9192568956076e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/AssetLibrary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26f1a792943e4fa1bd365464f2734c0d 3 | timeCreated: 1623497594 -------------------------------------------------------------------------------- /Scripts/AssetLibrary/ComponentReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed3121b544fe4eba84fa95ef39d0263c 3 | timeCreated: 1623497594 -------------------------------------------------------------------------------- /Scripts/AssetLibrary/GameAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc452f6bbf9047dc9793da3cbbc25ee1 3 | timeCreated: 1623571084 -------------------------------------------------------------------------------- /Scripts/AssetLibrary/GameFoundation.AssetLibrary.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d7a19443b8bb345af07e5d5c047c0d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/AssetLibrary/LoadAssetsByLabelOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41bb78f983c34012b6fd98d181df35d8 3 | timeCreated: 1623575036 -------------------------------------------------------------------------------- /Scripts/DataManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fbb575d4e83446f853b038313a97538 3 | timeCreated: 1706439126 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28ea427cadcf9304b8378440eeeda442 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/APIHandler.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12d36da1d91c17e4b952710b0ae2fbcf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/APIHandler/BlueprintDownloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66304ae445224531b126217424c27ad4 3 | timeCreated: 1629302076 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83e5328bf71949f88e7b2c2805736b95 3 | timeCreated: 1629301998 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintController/BlueprintConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aad6e7490e1b41fc870ca994b301ac53 3 | timeCreated: 1629514414 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintController/BlueprintReaderManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d3b522fb1b49058fe490d7fb5d29db 3 | timeCreated: 1629255897 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintController/BlueprintServicesInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c3949b34aa14f16a61552c2993703ad 3 | timeCreated: 1629302091 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintController/PreProcessBlueprintMobile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f183438cb5d4081b40186b4a838a50c 3 | timeCreated: 1656660708 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96c6ac3510b444beaf89c9ac87f66a27 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/BlueprintReaderAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 250253523ad542b58fbb0f023020fb28 3 | timeCreated: 1654845167 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aec7c99ad87426bb79817cbee9e86e1 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/CSVHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b91895afba974a148cd6be6ff851665e 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/CustomTypeConverterAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ade04389529144b7b7f3cc0805159bd5 3 | timeCreated: 1671179799 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2887cb43eed34ad1be2a54f92b850772 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ArrayGenericConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31f3b38d49f24c4596766e9ed0a26b9d 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/BooleanConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c025e422b3e4667a5e8f4d2358e6691 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ByteArrayConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4babb0e1c9c48e8b47091b642189e98 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ByteArrayConverterOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a906db272ffd41d3b01b2592d667f101 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ByteConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12ad43373132465eb3a74267df2b2085 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/CharConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cbe90c0a8014ab8b3c07179d2921e64 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/CsvHelpExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 041b65e928c4416bb63c5845976d1ef4 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DateConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b928ba2b38384f0781b50693c31f6ae4 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DateTimeOffsetConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e7ee2ec40114cebb9d1a835af896c59 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DecimalConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7a94808a764431eab8d05ed4b50494e 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DefaultTypeConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a053c3dd01394ca685f55366704f1203 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DictionaryGenericConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf27f3451f44c269b8450f4e70f2e4f 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/DoubleConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c1791877184d4bb1a6c9fcda0cb0eb 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/EnumConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b7d2fd5bb64462d9b59ab81bfbe46bd 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/EnumerableConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53ea64b4252443e6a313563793e409d5 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/GuidConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaf8f42637b04ce09aaaa271d06a3910 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ITypeConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f40f83a9ee649bda0db988f78e7b401 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/Int16Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7339d946f99849c2abea356dbc3905eb 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/Int32Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ffdce1e6244ecea1464c2cfc11bc6d 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/Int64Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac3ba46b903b4101a7fc5eebbffd702c 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/JsonConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 863acdf4450348afb187f135bb46b9dc 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ListGenericConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31595277e5564b5fbde572d1985013ae 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/NullableConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c4df2f7d894022a74e031daf9909b2 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/PairGenericConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e47e519cb6c64f7f9cfd106faf8bec64 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/ReadonlyCollectionConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a41a31d944a4b18852a3cc4fc64b7e8 3 | timeCreated: 1685338138 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/SByteConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278d8f9463144618bdabcc23d72ed2b2 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/SingleConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dfa865083e74a15a9355da3dc617369 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/StringConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76a2a97315d5487c824a038a4194b18f 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/Tuple3GenericConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9910d4534017448987f4309a6b867767 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UInt16Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91b833c9406745f28fe74fb93e30c9de 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UInt32Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea7d3b96594f4f3093a7ceb65e148fe9 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UInt64Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af255ffcbb044e3b30904e83c5c90dc 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UnityVector2Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7f646a52d3b478b950532b133e4df9b 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UnityVector3Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8d0a506d58a486ba555725bded9a008 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConversion/UriConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7184b116e4334e8980fbed8f713e47a3 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Converter/TypeConverterCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8ec8efaba9a46d3bfb8893e91cb7ed5 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Exceptions.cs: -------------------------------------------------------------------------------- 1 | namespace DataManager.Blueprint.BlueprintReader 2 | { 3 | using System; 4 | 5 | public class FieldDontExistInBlueprint : Exception 6 | { 7 | public FieldDontExistInBlueprint(string message) : base(message) { } 8 | } 9 | } -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/Exceptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bee17d5fffc040b2958ed117aa39ec01 3 | timeCreated: 1654845167 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/GenericBlueprintReaderByCol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd0891478c3c44b9a5a765dd45c47322 3 | timeCreated: 1654845167 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/GenericBlueprintReaderByRow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d6b47aa31584e039b4ec2fc88070f2d 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintReader/IGenericBlueprintReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 904436af837346caa795d6932dd2bd6c 3 | timeCreated: 1654845167 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintSource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f503fa7ac1466b8a991584189783a9 3 | timeCreated: 1722855266 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintSource/AddressableBlueprintLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e820da3cf934f9eae941af3e7a53bc8 3 | timeCreated: 1722888667 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintSource/CloudBlueprintLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96ad36ae2a2f4a14bdedb2f376af2111 3 | timeCreated: 1722856046 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintSource/IBlueprintLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1641a0aff44c44bb96383e11a87df3d8 3 | timeCreated: 1722855296 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/BlueprintSource/ResourceBlueprintLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 432edab7fcd04061b21d5712e5907be5 3 | timeCreated: 1722855923 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 218c7251b0b948bd81ce496e88edc990 3 | timeCreated: 1672743796 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/Editor/BlueprintConfigEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0178ca9ba8af40478d37d03b20cfa561 3 | timeCreated: 1672743814 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/Editor/GameFoundation.BlueprintFlow.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed4cda5d59da304783895de6f59db55 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/Signals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f71e0f74404c4e9895e5e76ff64d257c 3 | timeCreated: 1629302140 -------------------------------------------------------------------------------- /Scripts/DataManager/Blueprint/Signals/BlueprintSignals.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1e865293b6e484496bd81cb517c1393 3 | timeCreated: 1629536349 -------------------------------------------------------------------------------- /Scripts/DataManager/GameFoundation.DataManager.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3160336edb76dac4ca39bf4bd7da7d7e 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b38e7d80eb0f467589b056cb0488da10 3 | timeCreated: 1684137973 -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData/BaseHandleLocalDataServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfc8daa302f742a5a18a9ee7570bfb84 3 | timeCreated: 1684138192 -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData/IHandleLocalDataServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17cc73a5a4cd449692fa922eaac6c4d1 3 | timeCreated: 1684138001 -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData/ILocalData.cs: -------------------------------------------------------------------------------- 1 | namespace DataManager.LocalData 2 | { 3 | public interface ILocalData 4 | { 5 | public void Init(){ } 6 | } 7 | } -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData/ILocalData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71a3d2c5231347b98ca1777b2a85e4a1 3 | timeCreated: 1672025423 -------------------------------------------------------------------------------- /Scripts/DataManager/LocalData/PlayerPrefsLocalDataServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e091833608a2431d9439b26068bb01df 3 | timeCreated: 1684139460 -------------------------------------------------------------------------------- /Scripts/DataManager/MasterData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34e253de90494766a93f56d3e45ded92 3 | timeCreated: 1718037672 -------------------------------------------------------------------------------- /Scripts/DataManager/MasterData/MasterDataManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d224590a3d316c64f9413537cdab3c2b 3 | timeCreated: 1684726802 -------------------------------------------------------------------------------- /Scripts/DataManager/MasterData/MasterDataReadySignal.cs: -------------------------------------------------------------------------------- 1 | namespace DataManager.MasterData 2 | { 3 | public class MasterDataReadySignal 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /Scripts/DataManager/MasterData/MasterDataReadySignal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6bbdc2dede9e34aa40ac2de9ac1aab 3 | timeCreated: 1684480089 -------------------------------------------------------------------------------- /Scripts/DataManager/UserData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5f783fda28f4771b179dc383bde3036 3 | timeCreated: 1718037625 -------------------------------------------------------------------------------- /Scripts/DataManager/UserData/BaseDataManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c13ab61d3bec4be7bddb609ae00bf330 3 | timeCreated: 1706438278 -------------------------------------------------------------------------------- /Scripts/DataManager/UserData/IInitializeDataOnStart.cs: -------------------------------------------------------------------------------- 1 | namespace DataManager.UserData 2 | { 3 | using System; 4 | 5 | public interface IInitializeDataOnStart 6 | { 7 | internal Type GetDataType(); 8 | public void InitializeData(IUserData userData); 9 | } 10 | } -------------------------------------------------------------------------------- /Scripts/DataManager/UserData/IInitializeDataOnStart.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48769d9a6e294a21b63459ce27b23dc6 3 | timeCreated: 1719309244 -------------------------------------------------------------------------------- /Scripts/DataManager/UserData/IUserData.cs: -------------------------------------------------------------------------------- 1 | namespace DataManager.UserData 2 | { 3 | public interface IUserData{} 4 | } -------------------------------------------------------------------------------- /Scripts/DataManager/UserData/IUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aba4196186f425a935ca76ea5bc735a 3 | timeCreated: 1706438751 -------------------------------------------------------------------------------- /Scripts/GameConfigs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97da139e989052b42a83e4296584bf8e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/GameConfigs/GDKConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08f96609e2d44cd99cbf44348e1f8118 3 | timeCreated: 1665204274 -------------------------------------------------------------------------------- /Scripts/GameConfigs/GameFoundation.GameConfigs.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd63a94f96a04194697a9732d6239b71 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/GameConfigs/IGameConfig.cs: -------------------------------------------------------------------------------- 1 | namespace GameConfigs 2 | { 3 | public interface IGameConfig 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /Scripts/GameConfigs/IGameConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f465f8f02c214539a324b2bfea7831c2 3 | timeCreated: 1665213416 -------------------------------------------------------------------------------- /Scripts/GameFoundation.Script.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b7f606bac4736c46b2ed3c8b927e802 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/GameFoundationInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c04e8bdf8a84f84b4f68aad8305a07e 3 | timeCreated: 1637057806 -------------------------------------------------------------------------------- /Scripts/SoundManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3097abfb4ef34eefb1d132bb74e46043 3 | timeCreated: 1706355201 -------------------------------------------------------------------------------- /Scripts/SoundManager/AudioManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1760a3ddf0ef4c7a8c0d94bda9077213 3 | timeCreated: 1635994808 -------------------------------------------------------------------------------- /Scripts/SoundManager/GameFoundation.SoundManager.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161154da75f5a0e4bbfa7635538d52c8 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/UIModule.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0894a49f87d3054fbdc4c15975868e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/UIModule/Adapter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43ffc848eef64254be0ad485ec122100 3 | timeCreated: 1665931344 -------------------------------------------------------------------------------- /Scripts/UIModule/Adapter/BasicGridAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55246b63f02e45be86edd7b575c7051d 3 | timeCreated: 1665931345 -------------------------------------------------------------------------------- /Scripts/UIModule/Adapter/BasicListAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb797b4a6e7c4ee1b864a2c35ce34a64 3 | timeCreated: 1665931345 -------------------------------------------------------------------------------- /Scripts/UIModule/Adapter/MultiplePrefabsListAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b90252102f476283c732dca5731f67 3 | timeCreated: 1675061699 -------------------------------------------------------------------------------- /Scripts/UIModule/CommonScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6749c37d5a547aeb30cfbacf14e9600 3 | timeCreated: 1640001552 -------------------------------------------------------------------------------- /Scripts/UIModule/GameFoundation.UIModule.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7f0ab2ac424208429d649986281d535 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/UIModule/MVP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8827d65b97e4e5aa948a2d429357104 3 | timeCreated: 1631262800 -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/BaseUIItemPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6009a000835b4906b117f55341a34cf2 3 | timeCreated: 1634186420 -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/IUIModel.cs: -------------------------------------------------------------------------------- 1 | namespace GameFoundation.Scripts.UIModule.MVP 2 | { 3 | /// 4 | /// represent the state of View 5 | /// may contain property streams (onValueChanged ...) 6 | /// 7 | public interface IUIModel 8 | { 9 | 10 | } 11 | } -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/IUIModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6ebe6de3b44ff186e5ad160ba256dc 3 | timeCreated: 1631262917 -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/IUIPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff26ce699d084312891c21092c4cad50 3 | timeCreated: 1631262823 -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/IUIView.cs: -------------------------------------------------------------------------------- 1 | namespace GameFoundation.Scripts.UIModule.MVP 2 | { 3 | /// 4 | /// represent view, contains render logic 5 | /// may contain input data streams (onClick, onSwipe...) 6 | /// 7 | public interface IUIView 8 | { 9 | } 10 | } -------------------------------------------------------------------------------- /Scripts/UIModule/MVP/IUIView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea4a08cbe144778a443e284b649a00c 3 | timeCreated: 1631262908 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91f842680c4a16a42abd8d6b4ae17076 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9e0f0f7c7394d6a8873981ed020dd12 3 | timeCreated: 1630134837 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cd2302d639b405ba092aa0d76cb0cfd 3 | timeCreated: 1630135064 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Model/IScreenModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9301d88528e4abf80cc49a50c64dac6 3 | timeCreated: 1630135053 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Presenter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf660a7e12fe481580a54e863c5a5460 3 | timeCreated: 1630134917 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Presenter/BasePopupPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcdae21b5ee048e6ab4c014313659046 3 | timeCreated: 1630746420 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Presenter/BaseScreenPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feed1f85f1d14b26be9b2fd8e9a4a7c7 3 | timeCreated: 1630135272 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Presenter/IScreenPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1278bc96e5c0466f9249c4a9fc4830cb 3 | timeCreated: 1630134993 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/Presenter/ScreenInfoAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46bf8647e6124ceaa01537c9fce200fb 3 | timeCreated: 1630159722 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb3ebe22ca0148f6b7c4cb41d2585988 3 | timeCreated: 1630135021 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/View/BaseView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4885fa27ecc2488c812560e31a1c224e 3 | timeCreated: 1630135392 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/BaseScreen/View/IScreenView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c18f5aec5655426b8a6b4d7b8b89730c 3 | timeCreated: 1630135027 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 734697a1d8d6ae04197444c78d4e9093 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers/BaseSceneInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a1f384fecd4df1a8cbbdf30eb13f25 3 | timeCreated: 1630747801 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers/PopupBlurBackgroundManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b02dd21c32d41799f8a93bfd4e0f887 3 | timeCreated: 1631085841 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers/RootUICanvas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92d431b0c5c4435979c5515eca471f7 3 | timeCreated: 1630747323 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers/SceneDirector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bca22b56c541ad80a819f579db0de3 3 | timeCreated: 1628419896 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Managers/ScreenFlowInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c37a655c27c4132ac085f3e1ada6a61 3 | timeCreated: 1630644358 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Signals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee5706c1341141eaa37689bd17ee03bd 3 | timeCreated: 1630210365 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Signals/PopupSignal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 487523c8928247a78743eb23c43d990b 3 | timeCreated: 1631086935 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Signals/SceneSignals.cs: -------------------------------------------------------------------------------- 1 | namespace GameFoundation.Scripts.UIModule.ScreenFlow.Signals 2 | { 3 | public class StartLoadingNewSceneSignal 4 | { 5 | 6 | } 7 | 8 | public class FinishLoadingNewSceneSignal 9 | { 10 | 11 | } 12 | } -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Signals/SceneSignals.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85855cbe76f846b8b6682a2cfe975300 3 | timeCreated: 1630663800 -------------------------------------------------------------------------------- /Scripts/UIModule/ScreenFlow/Signals/ScreenSignals.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 876b402679454b36accf48bbbecd1d1b 3 | timeCreated: 1630210497 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2915783d87318c74fa8b03b74c298a7d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/ExtensionMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90d8ccedcc084e00b14c98ae83e4c514 3 | timeCreated: 1663811935 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/FormatNumberHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6fa2d25aa2642b68097aa786991acbf 3 | timeCreated: 1677495092 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 496f5cbe81ce41868ebe6e11f74c9c54 3 | timeCreated: 1654836483 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/BaseQueueAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45bea8cafc884d4f9b3e8fe8e9067772 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/GameQueueActionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a6a0d18aa443cda675df726f7d0b9d 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/GameQueueActionInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35e4030388eb4b8e801541998b4475d6 3 | timeCreated: 1654848880 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/GameQueueActionParam.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03272e3f06b640298904f6b38024d392 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/GameQueueActionServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12b29f79cbf544619fe79dde8a93b1ab 3 | timeCreated: 1654836507 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/IGameQueueAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6eb3da3ff124455a5a278750125e428 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/PlayTimelineQueueAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c09f022a3ed14f3491d16f15e70c52a9 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/PlayTweenQueueAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f98001e1fb094697a42a8e01ad12c2d2 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/GameQueueAction/ShowPopupQueueAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe26f135324b4100961f8cb48807c391 3 | timeCreated: 1654845920 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/LoadImage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c07bcf0034fe42f590ff8c617d29e537 3 | timeCreated: 1660560566 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/LoadImage/LoadImageHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42a42845a8af4472bf937b0d345c5d92 3 | timeCreated: 1660560569 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1d94c50c5944fb8a99ac33a6bf0bce1 3 | timeCreated: 1693989504 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/ChangeGrayscale.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4eb9afc3e3c4e13a0bdf614ca8cb64e 3 | timeCreated: 1693989516 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/ChangeGrayscale/ChangeGrayScaleBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 286bf77a52a84b0da4837ddb512f6684 3 | timeCreated: 1693989518 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/ChangeGrayscale/IChangeGrayScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352eede88a934fc7b0288078bc3a498a 3 | timeCreated: 1693989518 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/ChangeGrayscale/ImageChangeGrayScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd78b6658b0a4a4a8dbc7d4da4df044b 3 | timeCreated: 1693989518 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/ChangeGrayscale/TextChangeGrayScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1714a0afdeac44c0965250ec1e4dc898 3 | timeCreated: 1693989518 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIEffect/UIEffectHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d97ab0dcc2a4cbebe515df5c9406a30 3 | timeCreated: 1693990072 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UILayoutElement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9766ed43e1644bdbda342f20101581a 3 | timeCreated: 1647143975 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UILayoutElement/FollowLayoutElementPreferredSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4837d6aabfa24f73be77bb2ffa0740de 3 | timeCreated: 1647143991 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UILayoutElement/TextLayoutElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36776f00ffea40879211a6a744108d02 3 | timeCreated: 1647143991 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bd42058ce5840d6b9b6bb083d0128c3 3 | timeCreated: 1640345429 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/AutoCooldownTimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85c407305954494daff88884b4fec208 3 | timeCreated: 1633667082 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/NonDrawingGraphic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdbdb6e381404a76aaaa7a74cf7f76f9 3 | timeCreated: 1660619325 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/RotateUIFollowOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de021a30cdf6415da3846396de90d00b 3 | timeCreated: 1640345466 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/UIScreenTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d5e36607f6b4c40bf66172720d58ef0 3 | timeCreated: 1645779349 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/UITransition.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31002725a3204f7e9ea412bd6c553d16 3 | timeCreated: 1738966304 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/UITransition/AnimatorTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ffbcacaccd743ffb0e0018c30778376 3 | timeCreated: 1738966466 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/UITransition/DoTweenTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0dcce57f38141b89c8d438e9f9021bd 3 | timeCreated: 1738966441 -------------------------------------------------------------------------------- /Scripts/UIModule/Utilities/UIStuff/UITransition/PlayableDirectorTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17b4fd1e9ab545b7a6b0bfd7b2ca07c1 3 | timeCreated: 1738966328 -------------------------------------------------------------------------------- /Scripts/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27a81b201e554eccab705c0df4663b3a 3 | timeCreated: 1629261112 -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc76b7d9a253f6143b0656b9686b86d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices/ApplicationPauseSignal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d26d0496be141fab98efbb076e98b0f 3 | timeCreated: 1631248978 -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices/ApplicationServiceInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc930fd7ed1d4cc2b1dc09788557a357 3 | timeCreated: 1637059987 -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices/DetectRotateOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13cabd7fa117400ba691947e5946d9af 3 | timeCreated: 1640344327 -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices/UpdateTimeAfterFocusSignal.cs: -------------------------------------------------------------------------------- 1 | namespace GameFoundation.Scripts.Utilities.ApplicationServices 2 | { 3 | public class UpdateTimeAfterFocusSignal 4 | { 5 | public double MinimizeTime; 6 | } 7 | } -------------------------------------------------------------------------------- /Scripts/Utilities/ApplicationServices/UpdateTimeAfterFocusSignal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d64fea55903f4bad9bfba83d2d98223f 3 | timeCreated: 1639974760 -------------------------------------------------------------------------------- /Scripts/Utilities/BaseTextMeshPro.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52ba7a6f68e897e499dbcddf1bc45b21 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d10646d36334af6a54f5123106c27e9 3 | timeCreated: 1629518393 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/DateTimeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 427f396d853a4d5ca2cdb4a847c06023 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/DictionaryExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8562895a93c74e64931af1f331233db4 3 | timeCreated: 1676957103 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/FpsCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ba16725921c4a728a90564352bbcf77 3 | timeCreated: 1695478694 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/IEnumableExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3ac0326a4f44b3293759f6cb6e80267 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/ListExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb8ae27d422c4ef2b0ce939623caccc9 3 | timeCreated: 1648197694 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/MD5Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 497e1a5dfc61407093eb4c4e64bb8aea 3 | timeCreated: 1637037345 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/ReflectionUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 984957caad964bb294d6b5bdeafb1b20 3 | timeCreated: 1629985974 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/StringExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abcc4bf1117440b0a7f4d925f6215e19 3 | timeCreated: 1676956978 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/TypeExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12ae015c0eb14f9b817d421c6c0c0f7e 3 | timeCreated: 1630159912 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/UnityExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 838ec9132c5140d78356ae2e9b932dc4 3 | timeCreated: 1647311598 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/UnitySerializedDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7105a452c9e54506a2c407d2c20b53c3 3 | timeCreated: 1637750635 -------------------------------------------------------------------------------- /Scripts/Utilities/Extension/ZenjectUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 441cc372fdda46e18ead9e04a44d4a93 3 | timeCreated: 1630003467 -------------------------------------------------------------------------------- /Scripts/Utilities/GameFoundation.Utilities.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d4daf6696a825240b11d99d0d2865ed 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Scripts/Utilities/GameInfoMono.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a187877049b84e48b1b93087126baafc 3 | timeCreated: 1646030519 -------------------------------------------------------------------------------- /Scripts/Utilities/LogService.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f4102d568ce9124b894bdcb1d6ed158 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/LogService/IDebugService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e76f9ae8054b4ebc62124409c0ca34 3 | timeCreated: 1628355974 -------------------------------------------------------------------------------- /Scripts/Utilities/LogService/LoadingTimeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 345eb1a31dcf4facbcd7faf8712584a9 3 | timeCreated: 1647010959 -------------------------------------------------------------------------------- /Scripts/Utilities/LogService/LogService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e83217123e9a4696b14245e586141d60 3 | timeCreated: 1628355983 -------------------------------------------------------------------------------- /Scripts/Utilities/ObjectPool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99768c84daae4677bc84fba8b3e4e353 3 | timeCreated: 1644908132 -------------------------------------------------------------------------------- /Scripts/Utilities/ObjectPool/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b06d5ae1cd904c979f6f5c205e249a27 3 | timeCreated: 1644921135 -------------------------------------------------------------------------------- /Scripts/Utilities/ObjectPool/ObjectPoolExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12aa1c9def1d4644b5f97d5e61e96605 3 | timeCreated: 1644908152 -------------------------------------------------------------------------------- /Scripts/Utilities/ObjectPool/ObjectPoolManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e09f73c1b80b403c91ce454faf4218cc 3 | timeCreated: 1644814963 -------------------------------------------------------------------------------- /Scripts/Utilities/ObjectPool/StartupPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d7a24cb6eb44f993658ef1bec6a9b7 3 | timeCreated: 1644908240 -------------------------------------------------------------------------------- /Scripts/Utilities/SpriteAtlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e0ee0d8bcdb4186ae072e84a5129cea 3 | timeCreated: 1704255303 -------------------------------------------------------------------------------- /Scripts/Utilities/SpriteAtlas/SpriteAtlasHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b1ae25de272497d8d426b612e2f4892 3 | timeCreated: 1694753477 -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 958df8f5d2e84533ba30de957da529dc 3 | timeCreated: 1646297963 -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2adf09c16fbd40faa3edd076a72e81f3 3 | timeCreated: 1646303324 -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/CustomAnimation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2e448698583d994c96a02bb0d78bc72 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/CustomAnimation/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ee7d0b98eef541d98680ecf5382c306 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/Marker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a9e4209b57078142b4f49aba8770e72 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/Marker/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 950ca07a631a74c968f678c0d209038d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/Slider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc6c727095e571847bd88bd608669c37 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/Slider/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da248bc12c9e14ecb9698e3da7db3ef6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TMPTextCounter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37dcfef12539a264aa3346683b0eec56 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TMPTextCounter/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e162f63d787594608a488954e9414f42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TMPUITextCounter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9778a33edee8534781b145a8d4264f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TMPUITextCounter/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 967ca5fcf9b604be0a7bb20ed8469c9b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimeMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a49620997bc1f34fb24f27c46333c9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimeMachine/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fdb95088823e4a6e843f3e159e54d3b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimeScale.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d874a74101a32454eb5cd1e5d495d0ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimeScale/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77c38a651981444daad6ad65a2acccdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimelineEvents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe927543b44fcc47b464a4b65d59b04 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/CustomTimeline/TimelineEvents/TimelineEventMixerBehaviour.cs: -------------------------------------------------------------------------------- 1 | namespace GameFoundation.Scripts.Utilities.TimelineUtils.CustomTimeline.TimelineEvents { 2 | using UnityEngine.Playables; 3 | 4 | public class TimelineEventMixerBehaviour : PlayableBehaviour { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec666e4239ce415494499e9b47e79b2e 3 | timeCreated: 1646299786 -------------------------------------------------------------------------------- /Scripts/Utilities/TimelineUtils/Extensions/PlayableDirectorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88f0ee9cc43b46699b7e8fb1b6b1b627 3 | timeCreated: 1646297994 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 642347bac42a4907a340dc8d8bf36df7 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/EnumEnumerableExcludeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fef007648754aca87a9b5384b798b5c 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/HttpRequestDefinitionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a57e24e9e4c84ac3864da9fe798c7829 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/IterTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9f6903e9f04b82aa15f503cd7a9a84 3 | timeCreated: 1684466950 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/ListExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dcac9b8a35f49028f730eeeb9c92d03 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/ServerAnnotations.cs: -------------------------------------------------------------------------------- 1 | #if CLIENT 2 | // fake require Attribute 3 | namespace GameFoundation.Scripts.Utilities.Utils 4 | { 5 | using System; 6 | 7 | public class RequiredAttribute : Attribute 8 | { 9 | } 10 | } 11 | #endif -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/ServerAnnotations.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8991239c6d4afe809b64d3d96c0937 3 | timeCreated: 1654845166 -------------------------------------------------------------------------------- /Scripts/Utilities/Utils/TimeUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 829a06f9f67845c08af8b3dd2acb2161 3 | timeCreated: 1676957033 -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21ee79f79a8874248841bfa41e879fec 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | --------------------------------------------------------------------------------