├── .gitignore ├── 0_unity_project ├── Assembly-CSharp-Editor-firstpass.csproj ├── Assets │ ├── 0_App.meta │ ├── 0_App │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── com.custom.app.editor.asmdef │ │ │ └── com.custom.app.editor.asmdef.meta │ │ ├── Library.meta │ │ ├── Library │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ReactiveClicker.prefab │ │ │ │ └── ReactiveClicker.prefab.meta │ │ │ ├── Scenes.meta │ │ │ └── Scenes │ │ │ │ ├── ProjectRun.unity │ │ │ │ └── ProjectRun.unity.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── Entry.meta │ │ │ ├── Entry │ │ │ │ ├── MainDI.cs │ │ │ │ ├── MainDI.cs.meta │ │ │ │ ├── ProjectRunner.cs │ │ │ │ ├── ProjectRunner.cs.meta │ │ │ │ ├── com.custom.app.asmdef │ │ │ │ └── com.custom.app.asmdef.meta │ │ │ ├── MVC.meta │ │ │ ├── MVC │ │ │ │ ├── AddressablesNames.cs │ │ │ │ ├── AddressablesNames.cs.meta │ │ │ │ ├── Example1.meta │ │ │ │ ├── Example1 │ │ │ │ │ ├── ClickerModel.cs │ │ │ │ │ ├── ClickerModel.cs.meta │ │ │ │ │ ├── ClickerView.cs │ │ │ │ │ ├── ClickerView.cs.meta │ │ │ │ │ ├── ReactiveClickerInstaller.cs │ │ │ │ │ ├── ReactiveClickerInstaller.cs.meta │ │ │ │ │ ├── ReactiveClickerRunner.cs │ │ │ │ │ ├── ReactiveClickerRunner.cs.meta │ │ │ │ │ ├── ReactiveClickerViewController.cs │ │ │ │ │ └── ReactiveClickerViewController.cs.meta │ │ │ │ ├── app.mvc.feature1.asmdef │ │ │ │ └── app.mvc.feature1.asmdef.meta │ │ │ ├── csc-strict.rsp │ │ │ ├── csc-strict.rsp.meta │ │ │ ├── csc.rsp │ │ │ ├── csc.rsp.meta │ │ │ ├── link.xml │ │ │ └── link.xml.meta │ │ ├── Tests.meta │ │ └── Tests │ │ │ ├── EditMode.meta │ │ │ ├── EditMode │ │ │ ├── EditmodeTests.cs │ │ │ ├── EditmodeTests.cs.meta │ │ │ ├── com.custom.app.tests.editmode.asmdef │ │ │ └── com.custom.app.tests.editmode.asmdef.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── TestExtensions.cs │ │ │ ├── TestExtensions.cs.meta │ │ │ ├── com.custom.test.extensions.asmdef │ │ │ └── com.custom.test.extensions.asmdef.meta │ │ │ ├── Playmode.meta │ │ │ └── Playmode │ │ │ ├── PLaymodeTests.cs │ │ │ ├── PLaymodeTests.cs.meta │ │ │ ├── com.custom.app.tests.asmdef │ │ │ └── com.custom.app.tests.asmdef.meta │ ├── AddressableAssetsData.meta │ ├── AddressableAssetsData │ │ ├── AddressableAssetSettings.asset │ │ ├── AddressableAssetSettings.asset.meta │ │ ├── AssetGroupTemplates.meta │ │ ├── AssetGroupTemplates │ │ │ ├── Packed Assets.asset │ │ │ └── Packed Assets.asset.meta │ │ ├── AssetGroups.meta │ │ ├── AssetGroups │ │ │ ├── Built In Data.asset │ │ │ ├── Built In Data.asset.meta │ │ │ ├── Default Local Group.asset │ │ │ ├── Default Local Group.asset.meta │ │ │ ├── Schemas.meta │ │ │ └── Schemas │ │ │ │ ├── Built In Data_PlayerDataGroupSchema.asset │ │ │ │ ├── Built In Data_PlayerDataGroupSchema.asset.meta │ │ │ │ ├── Default Local Group_BundledAssetGroupSchema.asset │ │ │ │ ├── Default Local Group_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Default Local Group_ContentUpdateGroupSchema.asset │ │ │ │ └── Default Local Group_ContentUpdateGroupSchema.asset.meta │ │ ├── DataBuilders.meta │ │ ├── DataBuilders │ │ │ ├── BuildScriptFastMode.asset │ │ │ ├── BuildScriptFastMode.asset.meta │ │ │ ├── BuildScriptPackedMode.asset │ │ │ ├── BuildScriptPackedMode.asset.meta │ │ │ ├── BuildScriptPackedPlayMode.asset │ │ │ ├── BuildScriptPackedPlayMode.asset.meta │ │ │ ├── BuildScriptVirtualMode.asset │ │ │ └── BuildScriptVirtualMode.asset.meta │ │ ├── DefaultObject.asset │ │ └── DefaultObject.asset.meta │ ├── AssetUsageAnalyzer.meta │ ├── AssetUsageAnalyzer │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Addresssables.meta │ │ │ ├── Addresssables │ │ │ │ ├── AddressablesBundleDependenciesAnalyzer.cs │ │ │ │ ├── AddressablesBundleDependenciesAnalyzer.cs.meta │ │ │ │ ├── AddressablesUsageInCodeAnalyzer.cs │ │ │ │ ├── AddressablesUsageInCodeAnalyzer.cs.meta │ │ │ │ ├── CustomAddressableAssetUtility.cs │ │ │ │ ├── CustomAddressableAssetUtility.cs.meta │ │ │ │ ├── CustomBundleRuleBase.cs │ │ │ │ ├── CustomBundleRuleBase.cs.meta │ │ │ │ ├── UsageData.cs │ │ │ │ └── UsageData.cs.meta │ │ │ ├── com.addressables.keyusage.editor.asmdef │ │ │ └── com.addressables.keyusage.editor.asmdef.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── AddressablesKeyAttribute.cs │ │ │ ├── AddressablesKeyAttribute.cs.meta │ │ │ ├── com.addressables.keyusage.asmdef │ │ │ └── com.addressables.keyusage.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── AutomatedQA.meta │ ├── AutomatedQA │ │ ├── BuildConfig.json │ │ └── BuildConfig.json.meta │ ├── ECS.meta │ ├── ECS │ │ ├── DesperateDevs.meta │ │ ├── DesperateDevs │ │ │ ├── Compile.cs │ │ │ ├── Compile.cs.meta │ │ │ ├── DesperateDevs.Logging.dll │ │ │ ├── DesperateDevs.Logging.dll.meta │ │ │ ├── DesperateDevs.Networking.dll │ │ │ ├── DesperateDevs.Networking.dll.meta │ │ │ ├── DesperateDevs.Serialization.dll │ │ │ ├── DesperateDevs.Serialization.dll.meta │ │ │ ├── DesperateDevs.Utils.dll │ │ │ ├── DesperateDevs.Utils.dll.meta │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── DesperateDevs.Analytics.dll │ │ │ │ ├── DesperateDevs.Analytics.dll.meta │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll.meta │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.dll │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.dll.meta │ │ │ │ ├── DesperateDevs.CodeGeneration.dll │ │ │ │ ├── DesperateDevs.CodeGeneration.dll.meta │ │ │ │ ├── DesperateDevs.Unity.Editor.dll │ │ │ │ ├── DesperateDevs.Unity.Editor.dll.meta │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ ├── Jenny-Header.png │ │ │ │ └── Jenny-Header.png.meta │ │ │ │ ├── Plugins.meta │ │ │ │ └── Plugins │ │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll │ │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll.meta │ │ │ │ ├── DesperateDevs.CodeGeneration.Unity.Plugins.dll │ │ │ │ └── DesperateDevs.CodeGeneration.Unity.Plugins.dll.meta │ │ ├── Entitas.meta │ │ └── Entitas │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── Entitas.Migration.Unity.Editor.dll │ │ │ ├── Entitas.Migration.Unity.Editor.dll.meta │ │ │ ├── Entitas.Migration.dll │ │ │ ├── Entitas.Migration.dll.meta │ │ │ ├── Entitas.Unity.Editor.dll │ │ │ ├── Entitas.Unity.Editor.dll.meta │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.dll │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.dll.meta │ │ │ ├── Images.meta │ │ │ ├── Images │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png.meta │ │ │ │ ├── EntitasContextHierarchyIcon.png │ │ │ │ ├── EntitasContextHierarchyIcon.png.meta │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png.meta │ │ │ │ ├── EntitasEntityHierarchyIcon.png │ │ │ │ ├── EntitasEntityHierarchyIcon.png.meta │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png.meta │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png.meta │ │ │ │ ├── EntitasHeader.png │ │ │ │ ├── EntitasHeader.png.meta │ │ │ │ ├── EntitasSystemsHierarchyIcon.png │ │ │ │ ├── EntitasSystemsHierarchyIcon.png.meta │ │ │ │ ├── EntitasSystemsWarnHierarchyIcon.png │ │ │ │ └── EntitasSystemsWarnHierarchyIcon.png.meta │ │ │ ├── Plugins.meta │ │ │ └── Plugins │ │ │ │ ├── Entitas.CodeGeneration.Plugins.dll │ │ │ │ ├── Entitas.CodeGeneration.Plugins.dll.meta │ │ │ │ ├── Entitas.VisualDebugging.CodeGeneration.Plugins.dll │ │ │ │ └── Entitas.VisualDebugging.CodeGeneration.Plugins.dll.meta │ │ │ ├── Entitas.CodeGeneration.Attributes.dll │ │ │ ├── Entitas.CodeGeneration.Attributes.dll.meta │ │ │ ├── Entitas.Unity.dll │ │ │ ├── Entitas.Unity.dll.meta │ │ │ ├── Entitas.VisualDebugging.Unity.dll │ │ │ ├── Entitas.VisualDebugging.Unity.dll.meta │ │ │ ├── Entitas.dll │ │ │ ├── Entitas.dll.meta │ │ │ ├── Entitas.xml │ │ │ ├── Entitas.xml.meta │ │ │ ├── EntitasUpgradeGuide.md │ │ │ ├── EntitasUpgradeGuide.md.meta │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── CustomDefineManager.meta │ │ └── CustomDefineManager │ │ │ ├── Documentation.meta │ │ │ ├── Documentation │ │ │ ├── CustomDefineManager_V10.pdf │ │ │ └── CustomDefineManager_V10.pdf.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── CustomDefineManager.Data.Storage.cs │ │ │ ├── CustomDefineManager.Data.Storage.cs.meta │ │ │ ├── CustomDefineManager.Data.cs │ │ │ ├── CustomDefineManager.Data.cs.meta │ │ │ ├── CustomDefineManager.Directive.cs │ │ │ ├── CustomDefineManager.Directive.cs.meta │ │ │ ├── CustomDefineManager.Enums.cs │ │ │ ├── CustomDefineManager.Enums.cs.meta │ │ │ ├── CustomDefineManager.MenuItem.cs │ │ │ ├── CustomDefineManager.MenuItem.cs.meta │ │ │ ├── CustomDefineManager.cs │ │ │ └── CustomDefineManager.cs.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ ├── CustomDefineManagerData.xml │ │ │ └── CustomDefineManagerData.xml.meta │ ├── FR2_Cache.asset │ ├── FR2_Cache.asset.meta │ ├── LinkerSettings.asset │ ├── LinkerSettings.asset.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── CW.meta │ │ ├── CW │ │ │ ├── LeanCommon.meta │ │ │ ├── LeanCommon │ │ │ │ ├── Examples.meta │ │ │ │ ├── Examples │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Black.mat │ │ │ │ │ │ ├── Black.mat.meta │ │ │ │ │ │ ├── Blue.mat │ │ │ │ │ │ ├── Blue.mat.meta │ │ │ │ │ │ ├── Green.mat │ │ │ │ │ │ ├── Green.mat.meta │ │ │ │ │ │ ├── Grey.mat │ │ │ │ │ │ ├── Grey.mat.meta │ │ │ │ │ │ ├── Orange.mat │ │ │ │ │ │ ├── Orange.mat.meta │ │ │ │ │ │ ├── Purple.mat │ │ │ │ │ │ ├── Purple.mat.meta │ │ │ │ │ │ ├── Red.mat │ │ │ │ │ │ ├── Red.mat.meta │ │ │ │ │ │ ├── White.mat │ │ │ │ │ │ ├── White.mat.meta │ │ │ │ │ │ ├── Yellow.mat │ │ │ │ │ │ └── Yellow.mat.meta │ │ │ │ │ ├── Meshes.meta │ │ │ │ │ ├── Meshes │ │ │ │ │ │ ├── RoundedCube.obj │ │ │ │ │ │ └── RoundedCube.obj.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ ├── Prefabs │ │ │ │ │ │ ├── Button.prefab │ │ │ │ │ │ ├── Button.prefab.meta │ │ │ │ │ │ ├── Demo.prefab │ │ │ │ │ │ ├── Demo.prefab.meta │ │ │ │ │ │ ├── Label.prefab │ │ │ │ │ │ ├── Label.prefab.meta │ │ │ │ │ │ ├── RoundedCube.prefab │ │ │ │ │ │ └── RoundedCube.prefab.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── Plus.png │ │ │ │ │ │ └── Plus.png.meta │ │ │ │ ├── Extras.meta │ │ │ │ ├── Extras │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── LeanDestroy.cs │ │ │ │ │ │ ├── LeanDestroy.cs.meta │ │ │ │ │ │ ├── LeanFormatString.cs │ │ │ │ │ │ ├── LeanFormatString.cs.meta │ │ │ │ │ │ ├── LeanPath.cs │ │ │ │ │ │ ├── LeanPath.cs.meta │ │ │ │ │ │ ├── LeanPlane.cs │ │ │ │ │ │ ├── LeanPlane.cs.meta │ │ │ │ │ │ ├── LeanRoll.cs │ │ │ │ │ │ ├── LeanRoll.cs.meta │ │ │ │ │ │ ├── LeanSelect.cs │ │ │ │ │ │ ├── LeanSelect.cs.meta │ │ │ │ │ │ ├── LeanSelectable.cs │ │ │ │ │ │ ├── LeanSelectable.cs.meta │ │ │ │ │ │ ├── LeanSelectableBehaviour.cs │ │ │ │ │ │ ├── LeanSelectableBehaviour.cs.meta │ │ │ │ │ │ ├── LeanSelectableGraphicColor.cs │ │ │ │ │ │ ├── LeanSelectableGraphicColor.cs.meta │ │ │ │ │ │ ├── LeanSelectableRendererColor.cs │ │ │ │ │ │ ├── LeanSelectableRendererColor.cs.meta │ │ │ │ │ │ ├── LeanSelectableSpriteRendererColor.cs │ │ │ │ │ │ ├── LeanSelectableSpriteRendererColor.cs.meta │ │ │ │ │ │ ├── LeanSpawn.cs │ │ │ │ │ │ └── LeanSpawn.cs.meta │ │ │ │ ├── GUIDE.asset │ │ │ │ ├── GUIDE.asset.meta │ │ │ │ ├── LeanCommon.asmdef │ │ │ │ ├── LeanCommon.asmdef.meta │ │ │ │ ├── Required.meta │ │ │ │ ├── Required │ │ │ │ │ ├── Documentation.html │ │ │ │ │ ├── Documentation.html.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── LeanCommon.cs │ │ │ │ │ │ └── LeanCommon.cs.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ │ ├── LeanTouch.meta │ │ │ ├── LeanTouch │ │ │ │ ├── Examples.meta │ │ │ │ ├── Examples │ │ │ │ │ ├── 01 Finger Down.unity │ │ │ │ │ ├── 01 Finger Down.unity.meta │ │ │ │ │ ├── 02 Finger Up.unity │ │ │ │ │ ├── 02 Finger Up.unity.meta │ │ │ │ │ ├── 03 Finger Swipe.unity │ │ │ │ │ ├── 03 Finger Swipe.unity.meta │ │ │ │ │ ├── 04 Rotation.unity │ │ │ │ │ ├── 04 Rotation.unity.meta │ │ │ │ │ ├── 05 Direction 4.unity │ │ │ │ │ ├── 05 Direction 4.unity.meta │ │ │ │ │ ├── 06 Direction 8.unity │ │ │ │ │ ├── 06 Direction 8.unity.meta │ │ │ │ │ ├── 07 Finger Tap.unity │ │ │ │ │ ├── 07 Finger Tap.unity.meta │ │ │ │ │ ├── 08 Spawn.unity │ │ │ │ │ ├── 08 Spawn.unity.meta │ │ │ │ │ ├── 09 Block.unity │ │ │ │ │ ├── 09 Block.unity.meta │ │ │ │ │ ├── 10 Double.unity │ │ │ │ │ ├── 10 Double.unity.meta │ │ │ │ │ ├── 11 Finger Old.unity │ │ │ │ │ ├── 11 Finger Old.unity.meta │ │ │ │ │ ├── 12 Transform.unity │ │ │ │ │ ├── 12 Transform.unity.meta │ │ │ │ │ ├── 13 Relative.unity │ │ │ │ │ ├── 13 Relative.unity.meta │ │ │ │ │ ├── 14 Selectable.unity │ │ │ │ │ ├── 14 Selectable.unity.meta │ │ │ │ │ ├── 15 Tap To Select.unity │ │ │ │ │ ├── 15 Tap To Select.unity.meta │ │ │ │ │ ├── 16 Limit = Stop At Max.unity │ │ │ │ │ ├── 16 Limit = Stop At Max.unity.meta │ │ │ │ │ ├── 17 Limit = Deselect First.unity │ │ │ │ │ ├── 17 Limit = Deselect First.unity.meta │ │ │ │ │ ├── 18 Destroy.unity │ │ │ │ │ ├── 18 Destroy.unity.meta │ │ │ │ │ ├── 19 Transform.unity │ │ │ │ │ ├── 19 Transform.unity.meta │ │ │ │ │ ├── 20 Transform Relative.unity │ │ │ │ │ ├── 20 Transform Relative.unity.meta │ │ │ │ │ ├── 21 Tap To Toggle.unity │ │ │ │ │ ├── 21 Tap To Toggle.unity.meta │ │ │ │ │ ├── 22 Press To Select.unity │ │ │ │ │ ├── 22 Press To Select.unity.meta │ │ │ │ │ ├── 23 Transform Relative.unity │ │ │ │ │ ├── 23 Transform Relative.unity.meta │ │ │ │ │ ├── 24 Isolate.unity │ │ │ │ │ ├── 24 Isolate.unity.meta │ │ │ │ │ ├── Finger Trail.unity │ │ │ │ │ ├── Finger Trail.unity.meta │ │ │ │ │ ├── LeanTouch+.unity │ │ │ │ │ ├── LeanTouch+.unity.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Ball.physicMaterial │ │ │ │ │ │ ├── Ball.physicMaterial.meta │ │ │ │ │ │ ├── Line.mat │ │ │ │ │ │ ├── Line.mat.meta │ │ │ │ │ │ ├── Trail.mat │ │ │ │ │ │ └── Trail.mat.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ ├── Prefabs │ │ │ │ │ │ ├── Demo.prefab │ │ │ │ │ │ └── Demo.prefab.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── LeanPulseScale.cs │ │ │ │ │ │ ├── LeanPulseScale.cs.meta │ │ │ │ │ │ ├── LeanTouchEvents.cs │ │ │ │ │ │ └── LeanTouchEvents.cs.meta │ │ │ │ │ ├── Sidescroll2D.unity │ │ │ │ │ ├── Sidescroll2D.unity.meta │ │ │ │ │ ├── Sidescroll3D.unity │ │ │ │ │ ├── Sidescroll3D.unity.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ ├── Textures │ │ │ │ │ │ ├── ArrowCurve.png │ │ │ │ │ │ ├── ArrowCurve.png.meta │ │ │ │ │ │ ├── ArrowStraight.png │ │ │ │ │ │ ├── ArrowStraight.png.meta │ │ │ │ │ │ ├── ArrowTwist.png │ │ │ │ │ │ ├── ArrowTwist.png.meta │ │ │ │ │ │ ├── BigLogo+.png │ │ │ │ │ │ ├── BigLogo+.png.meta │ │ │ │ │ │ ├── Button.png │ │ │ │ │ │ ├── Button.png.meta │ │ │ │ │ │ ├── Circle.png │ │ │ │ │ │ ├── Circle.png.meta │ │ │ │ │ │ ├── FingerVisualization.png │ │ │ │ │ │ ├── FingerVisualization.png.meta │ │ │ │ │ │ ├── GlowingDot.png │ │ │ │ │ │ ├── GlowingDot.png.meta │ │ │ │ │ │ ├── GlowingLine.png │ │ │ │ │ │ ├── GlowingLine.png.meta │ │ │ │ │ │ ├── GlowingTrail.png │ │ │ │ │ │ ├── GlowingTrail.png.meta │ │ │ │ │ │ ├── Logo+.png │ │ │ │ │ │ ├── Logo+.png.meta │ │ │ │ │ │ ├── Square.png │ │ │ │ │ │ └── Square.png.meta │ │ │ │ │ ├── TouchEvents.unity │ │ │ │ │ ├── TouchEvents.unity.meta │ │ │ │ │ ├── TwistRotateCustomAxis.unity │ │ │ │ │ └── TwistRotateCustomAxis.unity.meta │ │ │ │ ├── Extras.meta │ │ │ │ ├── Extras │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── LeanDragCamera.cs │ │ │ │ │ │ ├── LeanDragCamera.cs.meta │ │ │ │ │ │ ├── LeanDragTrail.cs │ │ │ │ │ │ ├── LeanDragTrail.cs.meta │ │ │ │ │ │ ├── LeanDragTranslate.cs │ │ │ │ │ │ ├── LeanDragTranslate.cs.meta │ │ │ │ │ │ ├── LeanFingerData.cs │ │ │ │ │ │ ├── LeanFingerData.cs.meta │ │ │ │ │ │ ├── LeanFingerDown.cs │ │ │ │ │ │ ├── LeanFingerDown.cs.meta │ │ │ │ │ │ ├── LeanFingerFilter.cs │ │ │ │ │ │ ├── LeanFingerFilter.cs.meta │ │ │ │ │ │ ├── LeanFingerOld.cs │ │ │ │ │ │ ├── LeanFingerOld.cs.meta │ │ │ │ │ │ ├── LeanFingerSwipe.cs │ │ │ │ │ │ ├── LeanFingerSwipe.cs.meta │ │ │ │ │ │ ├── LeanFingerTap.cs │ │ │ │ │ │ ├── LeanFingerTap.cs.meta │ │ │ │ │ │ ├── LeanFingerUp.cs │ │ │ │ │ │ ├── LeanFingerUp.cs.meta │ │ │ │ │ │ ├── LeanFingerUpdate.cs │ │ │ │ │ │ ├── LeanFingerUpdate.cs.meta │ │ │ │ │ │ ├── LeanPinchScale.cs │ │ │ │ │ │ ├── LeanPinchScale.cs.meta │ │ │ │ │ │ ├── LeanScreenDepth.cs │ │ │ │ │ │ ├── LeanScreenDepth.cs.meta │ │ │ │ │ │ ├── LeanScreenQuery.cs │ │ │ │ │ │ ├── LeanScreenQuery.cs.meta │ │ │ │ │ │ ├── LeanSelectByFinger.cs │ │ │ │ │ │ ├── LeanSelectByFinger.cs.meta │ │ │ │ │ │ ├── LeanSelectableByFinger.cs │ │ │ │ │ │ ├── LeanSelectableByFinger.cs.meta │ │ │ │ │ │ ├── LeanSelectableByFingerBehaviour.cs │ │ │ │ │ │ ├── LeanSelectableByFingerBehaviour.cs.meta │ │ │ │ │ │ ├── LeanSwipeBase.cs │ │ │ │ │ │ ├── LeanSwipeBase.cs.meta │ │ │ │ │ │ ├── LeanTouchSimulator.cs │ │ │ │ │ │ ├── LeanTouchSimulator.cs.meta │ │ │ │ │ │ ├── LeanTwistRotate.cs │ │ │ │ │ │ ├── LeanTwistRotate.cs.meta │ │ │ │ │ │ ├── LeanTwistRotateAxis.cs │ │ │ │ │ │ └── LeanTwistRotateAxis.cs.meta │ │ │ │ ├── GUIDE.asset │ │ │ │ ├── GUIDE.asset.meta │ │ │ │ ├── LeanTouch.asmdef │ │ │ │ ├── LeanTouch.asmdef.meta │ │ │ │ ├── Required.meta │ │ │ │ ├── Required │ │ │ │ │ ├── Documentation.html │ │ │ │ │ ├── Documentation.html.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── LeanFinger.cs │ │ │ │ │ │ ├── LeanFinger.cs.meta │ │ │ │ │ │ ├── LeanGesture.cs │ │ │ │ │ │ ├── LeanGesture.cs.meta │ │ │ │ │ │ ├── LeanSnapshot.cs │ │ │ │ │ │ ├── LeanSnapshot.cs.meta │ │ │ │ │ │ ├── LeanTouch.cs │ │ │ │ │ │ └── LeanTouch.cs.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ │ ├── READ ME.txt │ │ │ ├── READ ME.txt.meta │ │ │ ├── Shared.meta │ │ │ └── Shared │ │ │ │ ├── Common.meta │ │ │ │ └── Common │ │ │ │ ├── CW.Common.asmdef │ │ │ │ ├── CW.Common.asmdef.meta │ │ │ │ ├── Examples.meta │ │ │ │ ├── Examples │ │ │ │ ├── Fonts.meta │ │ │ │ ├── Fonts │ │ │ │ │ ├── VarelaRound-Regular.ttf │ │ │ │ │ ├── VarelaRound-Regular.ttf.meta │ │ │ │ │ ├── VarelaRound-Regular.txt │ │ │ │ │ └── VarelaRound-Regular.txt.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Grid.mat │ │ │ │ │ ├── Grid.mat.meta │ │ │ │ │ ├── Skybox.mat │ │ │ │ │ └── Skybox.mat.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── CwCameraLook.cs │ │ │ │ │ ├── CwCameraLook.cs.meta │ │ │ │ │ ├── CwCameraMove.cs │ │ │ │ │ ├── CwCameraMove.cs.meta │ │ │ │ │ ├── CwCameraPivot.cs │ │ │ │ │ ├── CwCameraPivot.cs.meta │ │ │ │ │ ├── CwDemo.cs │ │ │ │ │ ├── CwDemo.cs.meta │ │ │ │ │ ├── CwDemoButton.cs │ │ │ │ │ ├── CwDemoButton.cs.meta │ │ │ │ │ ├── CwDemoButtonBuilder.cs │ │ │ │ │ ├── CwDemoButtonBuilder.cs.meta │ │ │ │ │ ├── CwDepthTextureMode.cs │ │ │ │ │ ├── CwDepthTextureMode.cs.meta │ │ │ │ │ ├── CwFollow.cs │ │ │ │ │ ├── CwFollow.cs.meta │ │ │ │ │ ├── CwInputManager.cs │ │ │ │ │ ├── CwInputManager.cs.meta │ │ │ │ │ ├── CwLightIntensity.cs │ │ │ │ │ ├── CwLightIntensity.cs.meta │ │ │ │ │ ├── CwRotate.cs │ │ │ │ │ └── CwRotate.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── RimAlpha.shader │ │ │ │ │ ├── RimAlpha.shader.meta │ │ │ │ │ ├── RimOpaque.shader │ │ │ │ │ ├── RimOpaque.shader.meta │ │ │ │ │ ├── Skybox.shader │ │ │ │ │ └── Skybox.shader.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── DemoDescription.png │ │ │ │ │ ├── DemoDescription.png.meta │ │ │ │ │ ├── DemoLeft.png │ │ │ │ │ ├── DemoLeft.png.meta │ │ │ │ │ ├── DemoRight.png │ │ │ │ │ ├── DemoRight.png.meta │ │ │ │ │ ├── Grid.png │ │ │ │ │ └── Grid.png.meta │ │ │ │ ├── Extras.meta │ │ │ │ ├── Extras │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── CwChild.cs │ │ │ │ │ ├── CwChild.cs.meta │ │ │ │ │ ├── CwRoot.cs │ │ │ │ │ ├── CwRoot.cs.meta │ │ │ │ │ ├── CwSeedAttribute.cs │ │ │ │ │ └── CwSeedAttribute.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ └── Shaders │ │ │ │ │ ├── CW_Fog.surfshader │ │ │ │ │ ├── CW_Fog.surfshader.meta │ │ │ │ │ ├── CW_HDRP.surfshader │ │ │ │ │ └── CW_HDRP.surfshader.meta │ │ │ │ ├── Required.meta │ │ │ │ └── Required │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── CwCommon.cs │ │ │ │ ├── CwCommon.cs.meta │ │ │ │ ├── CwEditor.cs │ │ │ │ ├── CwEditor.cs.meta │ │ │ │ ├── CwGuide.cs │ │ │ │ ├── CwGuide.cs.meta │ │ │ │ ├── CwHelper.cs │ │ │ │ ├── CwHelper.cs.meta │ │ │ │ ├── CwInput.cs │ │ │ │ ├── CwInput.cs.meta │ │ │ │ ├── CwShaderBundle.cs │ │ │ │ └── CwShaderBundle.cs.meta │ │ ├── Demigiant.meta │ │ ├── Demigiant │ │ │ ├── DOTween.meta │ │ │ └── DOTween │ │ │ │ ├── DOTween.XML │ │ │ │ ├── DOTween.XML.meta │ │ │ │ ├── DOTween.dll │ │ │ │ ├── DOTween.dll.mdb │ │ │ │ ├── DOTween.dll.mdb.meta │ │ │ │ ├── DOTween.dll.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── DOTweenEditor.XML │ │ │ │ ├── DOTweenEditor.XML.meta │ │ │ │ ├── DOTweenEditor.dll │ │ │ │ ├── DOTweenEditor.dll.mdb │ │ │ │ ├── DOTweenEditor.dll.mdb.meta │ │ │ │ ├── DOTweenEditor.dll.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ │ ├── DOTweenIcon.png │ │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ │ ├── DOTweenMiniIcon.png │ │ │ │ │ ├── DOTweenMiniIcon.png.meta │ │ │ │ │ ├── Footer.png │ │ │ │ │ ├── Footer.png.meta │ │ │ │ │ ├── Footer_dark.png │ │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ │ ├── Header.jpg │ │ │ │ │ └── Header.jpg.meta │ │ │ │ ├── Modules.meta │ │ │ │ ├── Modules │ │ │ │ ├── DOTween.Modules.asmdef │ │ │ │ ├── DOTween.Modules.asmdef.meta │ │ │ │ ├── DOTweenModuleAudio.cs │ │ │ │ ├── DOTweenModuleAudio.cs.meta │ │ │ │ ├── DOTweenModuleEPOOutline.cs │ │ │ │ ├── DOTweenModuleEPOOutline.cs.meta │ │ │ │ ├── DOTweenModulePhysics.cs │ │ │ │ ├── DOTweenModulePhysics.cs.meta │ │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ │ ├── DOTweenModulePhysics2D.cs.meta │ │ │ │ ├── DOTweenModuleSprite.cs │ │ │ │ ├── DOTweenModuleSprite.cs.meta │ │ │ │ ├── DOTweenModuleUI.cs │ │ │ │ ├── DOTweenModuleUI.cs.meta │ │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ │ ├── DOTweenModuleUnityVersion.cs.meta │ │ │ │ ├── DOTweenModuleUtils.cs │ │ │ │ └── DOTweenModuleUtils.cs.meta │ │ │ │ ├── readme.txt │ │ │ │ └── readme.txt.meta │ │ ├── Graphy - Ultimate Stats Monitor.meta │ │ ├── Graphy - Ultimate Stats Monitor │ │ │ ├── Changelog.txt │ │ │ ├── Changelog.txt.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── GraphyDebuggerEditor.cs │ │ │ │ ├── GraphyDebuggerEditor.cs.meta │ │ │ │ ├── GraphyEditorStyle.cs │ │ │ │ ├── GraphyEditorStyle.cs.meta │ │ │ │ ├── GraphyManagerEditor.cs │ │ │ │ ├── GraphyManagerEditor.cs.meta │ │ │ │ ├── GraphyMenuItem.cs │ │ │ │ ├── GraphyMenuItem.cs.meta │ │ │ │ ├── Tayx.Graphy.Editor.asmdef │ │ │ │ └── Tayx.Graphy.Editor.asmdef.meta │ │ │ ├── Font.meta │ │ │ ├── Font │ │ │ │ ├── Northwest-Bold.meta │ │ │ │ ├── Northwest-Bold │ │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt │ │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta │ │ │ │ │ ├── NORTHWEST-B.otf │ │ │ │ │ └── NORTHWEST-B.otf.meta │ │ │ │ ├── Roboto.meta │ │ │ │ └── Roboto │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ └── Roboto-Regular.ttf.meta │ │ │ ├── GUI.meta │ │ │ ├── GUI │ │ │ │ ├── GraphyGUISkin.guiskin │ │ │ │ └── GraphyGUISkin.guiskin.meta │ │ │ ├── Graphy_CustomizationScene.unitypackage │ │ │ ├── Graphy_CustomizationScene.unitypackage.meta │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Audio_Spectrum_Graph.mat │ │ │ │ ├── Audio_Spectrum_Graph.mat.meta │ │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat │ │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat.meta │ │ │ │ ├── FPS_Graph.mat │ │ │ │ ├── FPS_Graph.mat.meta │ │ │ │ ├── RAM_Allocated_Graph.mat │ │ │ │ ├── RAM_Allocated_Graph.mat.meta │ │ │ │ ├── RAM_Mono_Graph.mat │ │ │ │ ├── RAM_Mono_Graph.mat.meta │ │ │ │ ├── RAM_Reserved_Graph.mat │ │ │ │ └── RAM_Reserved_Graph.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Internal.meta │ │ │ │ ├── Internal │ │ │ │ │ ├── ADVANCED - Module.prefab │ │ │ │ │ ├── ADVANCED - Module.prefab.meta │ │ │ │ │ ├── AUDIO - Module.prefab │ │ │ │ │ ├── AUDIO - Module.prefab.meta │ │ │ │ │ ├── FPS - Module.prefab │ │ │ │ │ ├── FPS - Module.prefab.meta │ │ │ │ │ ├── RAM - Module.prefab │ │ │ │ │ └── RAM - Module.prefab.meta │ │ │ │ ├── [Graphy].prefab │ │ │ │ └── [Graphy].prefab.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Readme! - Graphy - Documentation.pdf │ │ │ ├── Readme! - Graphy - Documentation.pdf.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Advanced.meta │ │ │ │ ├── Advanced │ │ │ │ │ ├── G_AdvancedData.cs │ │ │ │ │ └── G_AdvancedData.cs.meta │ │ │ │ ├── Audio.meta │ │ │ │ ├── Audio │ │ │ │ │ ├── G_AudioGraph.cs │ │ │ │ │ ├── G_AudioGraph.cs.meta │ │ │ │ │ ├── G_AudioManager.cs │ │ │ │ │ ├── G_AudioManager.cs.meta │ │ │ │ │ ├── G_AudioMonitor.cs │ │ │ │ │ ├── G_AudioMonitor.cs.meta │ │ │ │ │ ├── G_AudioText.cs │ │ │ │ │ └── G_AudioText.cs.meta │ │ │ │ ├── Fps.meta │ │ │ │ ├── Fps │ │ │ │ │ ├── G_FpsGraph.cs │ │ │ │ │ ├── G_FpsGraph.cs.meta │ │ │ │ │ ├── G_FpsManager.cs │ │ │ │ │ ├── G_FpsManager.cs.meta │ │ │ │ │ ├── G_FpsMonitor.cs │ │ │ │ │ ├── G_FpsMonitor.cs.meta │ │ │ │ │ ├── G_FpsText.cs │ │ │ │ │ └── G_FpsText.cs.meta │ │ │ │ ├── Graph.meta │ │ │ │ ├── Graph │ │ │ │ │ ├── G_Graph.cs │ │ │ │ │ └── G_Graph.cs.meta │ │ │ │ ├── GraphyDebugger.cs │ │ │ │ ├── GraphyDebugger.cs.meta │ │ │ │ ├── GraphyManager.cs │ │ │ │ ├── GraphyManager.cs.meta │ │ │ │ ├── Ram.meta │ │ │ │ ├── Ram │ │ │ │ │ ├── G_RamGraph.cs │ │ │ │ │ ├── G_RamGraph.cs.meta │ │ │ │ │ ├── G_RamManager.cs │ │ │ │ │ ├── G_RamManager.cs.meta │ │ │ │ │ ├── G_RamMonitor.cs │ │ │ │ │ ├── G_RamMonitor.cs.meta │ │ │ │ │ ├── G_RamText.cs │ │ │ │ │ └── G_RamText.cs.meta │ │ │ │ ├── Shader.meta │ │ │ │ ├── Shader │ │ │ │ │ ├── G_GraphShader.cs │ │ │ │ │ └── G_GraphShader.cs.meta │ │ │ │ ├── Tayx.Graphy.asmdef │ │ │ │ ├── Tayx.Graphy.asmdef.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── IModifiableState.cs │ │ │ │ │ ├── IModifiableState.cs.meta │ │ │ │ │ ├── IMovable.cs │ │ │ │ │ └── IMovable.cs.meta │ │ │ │ ├── Util.meta │ │ │ │ └── Util │ │ │ │ │ ├── G_ExtensionMethods.cs │ │ │ │ │ ├── G_ExtensionMethods.cs.meta │ │ │ │ │ ├── G_FloatString.cs │ │ │ │ │ ├── G_FloatString.cs.meta │ │ │ │ │ ├── G_Intstring.cs │ │ │ │ │ ├── G_Intstring.cs.meta │ │ │ │ │ ├── G_Singleton.cs │ │ │ │ │ └── G_Singleton.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── GraphMobile.shader │ │ │ │ ├── GraphMobile.shader.meta │ │ │ │ ├── GraphStandard.shader │ │ │ │ └── GraphStandard.shader.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ │ ├── 2x2_Texture.png │ │ │ │ ├── 2x2_Texture.png.meta │ │ │ │ ├── Debugger_Logo_Dark.png │ │ │ │ ├── Debugger_Logo_Dark.png.meta │ │ │ │ ├── Debugger_Logo_White.png │ │ │ │ ├── Debugger_Logo_White.png.meta │ │ │ │ ├── Manager_Logo_Dark.png │ │ │ │ ├── Manager_Logo_Dark.png.meta │ │ │ │ ├── Manager_Logo_White.png │ │ │ │ ├── Manager_Logo_White.png.meta │ │ │ │ ├── Rounded_Rect_10px.png │ │ │ │ └── Rounded_Rect_10px.png.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ │ ├── IngameDebugConsole.meta │ │ ├── IngameDebugConsole │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ │ ├── DebugLogLogcatListener.cs │ │ │ │ ├── DebugLogLogcatListener.cs.meta │ │ │ │ ├── IngameDebugConsole.aar │ │ │ │ └── IngameDebugConsole.aar.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DebugLogManagerEditor.cs │ │ │ │ ├── DebugLogManagerEditor.cs.meta │ │ │ │ ├── IngameDebugConsole.Editor.asmdef │ │ │ │ └── IngameDebugConsole.Editor.asmdef.meta │ │ │ ├── IngameDebugConsole.Runtime.asmdef │ │ │ ├── IngameDebugConsole.Runtime.asmdef.meta │ │ │ ├── IngameDebugConsole.prefab │ │ │ ├── IngameDebugConsole.prefab.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── CommandSuggestion.prefab │ │ │ │ ├── CommandSuggestion.prefab.meta │ │ │ │ ├── DebugLogItem.prefab │ │ │ │ └── DebugLogItem.prefab.meta │ │ │ ├── README.txt │ │ │ ├── README.txt.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CircularBuffer.cs.meta │ │ │ │ ├── Commands.meta │ │ │ │ ├── Commands │ │ │ │ │ ├── PlayerPrefsCommands.cs │ │ │ │ │ ├── PlayerPrefsCommands.cs.meta │ │ │ │ │ ├── SceneCommands.cs │ │ │ │ │ ├── SceneCommands.cs.meta │ │ │ │ │ ├── TimeCommands.cs │ │ │ │ │ └── TimeCommands.cs.meta │ │ │ │ ├── ConsoleMethodAttribute.cs │ │ │ │ ├── ConsoleMethodAttribute.cs.meta │ │ │ │ ├── DebugLogConsole.cs │ │ │ │ ├── DebugLogConsole.cs.meta │ │ │ │ ├── DebugLogEntry.cs │ │ │ │ ├── DebugLogEntry.cs.meta │ │ │ │ ├── DebugLogIndexList.cs │ │ │ │ ├── DebugLogIndexList.cs.meta │ │ │ │ ├── DebugLogItem.cs │ │ │ │ ├── DebugLogItem.cs.meta │ │ │ │ ├── DebugLogItemCopyWebGL.cs │ │ │ │ ├── DebugLogItemCopyWebGL.cs.meta │ │ │ │ ├── DebugLogManager.cs │ │ │ │ ├── DebugLogManager.cs.meta │ │ │ │ ├── DebugLogPopup.cs │ │ │ │ ├── DebugLogPopup.cs.meta │ │ │ │ ├── DebugLogRecycledListView.cs │ │ │ │ ├── DebugLogRecycledListView.cs.meta │ │ │ │ ├── DebugLogResizeListener.cs │ │ │ │ ├── DebugLogResizeListener.cs.meta │ │ │ │ ├── DebugsOnScrollListener.cs │ │ │ │ ├── DebugsOnScrollListener.cs.meta │ │ │ │ ├── EventSystemHandler.cs │ │ │ │ └── EventSystemHandler.cs.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── IconClear.psd │ │ │ │ ├── IconClear.psd.meta │ │ │ │ ├── IconCollapse.psd │ │ │ │ ├── IconCollapse.psd.meta │ │ │ │ ├── IconError.psd │ │ │ │ ├── IconError.psd.meta │ │ │ │ ├── IconHide.psd │ │ │ │ ├── IconHide.psd.meta │ │ │ │ ├── IconInfo.psd │ │ │ │ ├── IconInfo.psd.meta │ │ │ │ ├── IconResizeAllDirections.psd │ │ │ │ ├── IconResizeAllDirections.psd.meta │ │ │ │ ├── IconResizeVertialOnly.psd │ │ │ │ ├── IconResizeVertialOnly.psd.meta │ │ │ │ ├── IconSnapToBottom.psd │ │ │ │ ├── IconSnapToBottom.psd.meta │ │ │ │ ├── IconSnapToBottomBg.psd │ │ │ │ ├── IconSnapToBottomBg.psd.meta │ │ │ │ ├── IconWarning.psd │ │ │ │ ├── IconWarning.psd.meta │ │ │ │ ├── IngameDebugConsoleSpriteAtlas.spriteatlas │ │ │ │ ├── IngameDebugConsoleSpriteAtlas.spriteatlas.meta │ │ │ │ ├── SearchIcon.psd │ │ │ │ ├── SearchIcon.psd.meta │ │ │ │ ├── SlicedBackground.psd │ │ │ │ ├── SlicedBackground.psd.meta │ │ │ │ ├── SlicedBackground2.psd │ │ │ │ ├── SlicedBackground2.psd.meta │ │ │ │ ├── SlicedBackground3.psd │ │ │ │ ├── SlicedBackground3.psd.meta │ │ │ │ ├── Unused.meta │ │ │ │ └── Unused │ │ │ │ │ ├── IconErrorHighRes.psd │ │ │ │ │ ├── IconErrorHighRes.psd.meta │ │ │ │ │ ├── IconInfoHighRes.psd │ │ │ │ │ ├── IconInfoHighRes.psd.meta │ │ │ │ │ ├── IconWarningHighRes.psd │ │ │ │ │ └── IconWarningHighRes.psd.meta │ │ │ ├── WebGL.meta │ │ │ ├── WebGL │ │ │ │ ├── IngameDebugConsole.jslib │ │ │ │ └── IngameDebugConsole.jslib.meta │ │ │ ├── iOS.meta │ │ │ └── iOS │ │ │ │ ├── IngameDebugConsole.mm │ │ │ │ └── IngameDebugConsole.mm.meta │ │ ├── UnityWebSocket.meta │ │ ├── UnityWebSocket │ │ │ ├── Demo.meta │ │ │ ├── Demo │ │ │ │ ├── DemoScene.unity │ │ │ │ ├── DemoScene.unity.meta │ │ │ │ ├── UnityWebSocketDemo.cs │ │ │ │ └── UnityWebSocketDemo.cs.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── WebGL.meta │ │ │ │ └── WebGL │ │ │ │ │ ├── WebSocket.jslib │ │ │ │ │ └── WebSocket.jslib.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── SettingsWindow.cs │ │ │ │ ├── SettingsWindow.cs.meta │ │ │ │ ├── UnityWebSocket.Editor.asmdef │ │ │ │ └── UnityWebSocket.Editor.asmdef.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ ├── CloseEventArgs.cs │ │ │ │ ├── CloseEventArgs.cs.meta │ │ │ │ ├── CloseStatusCode.cs │ │ │ │ ├── CloseStatusCode.cs.meta │ │ │ │ ├── ErrorEventArgs.cs │ │ │ │ ├── ErrorEventArgs.cs.meta │ │ │ │ ├── IWebSocket.cs │ │ │ │ ├── IWebSocket.cs.meta │ │ │ │ ├── MessageEventArgs.cs │ │ │ │ ├── MessageEventArgs.cs.meta │ │ │ │ ├── Opcode.cs │ │ │ │ ├── Opcode.cs.meta │ │ │ │ ├── OpenEventArgs.cs │ │ │ │ ├── OpenEventArgs.cs.meta │ │ │ │ ├── Settings.cs │ │ │ │ ├── Settings.cs.meta │ │ │ │ ├── WebSocketState.cs │ │ │ │ └── WebSocketState.cs.meta │ │ │ │ ├── Implementation.meta │ │ │ │ ├── Implementation │ │ │ │ ├── NoWebGL.meta │ │ │ │ ├── NoWebGL │ │ │ │ │ ├── WebSocket.cs │ │ │ │ │ ├── WebSocket.cs.meta │ │ │ │ │ ├── WebSocketManager.cs │ │ │ │ │ └── WebSocketManager.cs.meta │ │ │ │ ├── WebGL.meta │ │ │ │ └── WebGL │ │ │ │ │ ├── WebSocket.cs │ │ │ │ │ ├── WebSocket.cs.meta │ │ │ │ │ ├── WebSocketManager.cs │ │ │ │ │ └── WebSocketManager.cs.meta │ │ │ │ ├── UnityWebSocket.Runtime.asmdef │ │ │ │ └── UnityWebSocket.Runtime.asmdef.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 │ │ │ │ │ │ ├── TestGameObjectFactoryOne.meta │ │ │ │ │ │ ├── TestGameObjectFactoryOne │ │ │ │ │ │ │ ├── Cube.prefab │ │ │ │ │ │ │ └── Cube.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 │ │ │ │ ├── Zenject-ReflectionBaking.csproj │ │ │ │ └── Zenject-ReflectionBaking.csproj.meta │ │ │ ├── SampleGame1 (Beginner).meta │ │ │ ├── SampleGame1 (Beginner) │ │ │ │ ├── Asteroids.unity │ │ │ │ ├── Asteroids.unity.meta │ │ │ │ ├── AsteroidsSettings.lighting │ │ │ │ ├── AsteroidsSettings.lighting.meta │ │ │ │ ├── Media.meta │ │ │ │ ├── Media │ │ │ │ │ ├── Fonts.meta │ │ │ │ │ ├── Fonts │ │ │ │ │ │ ├── Space.txt │ │ │ │ │ │ ├── Space.txt.meta │ │ │ │ │ │ ├── space age.ttf │ │ │ │ │ │ └── space age.ttf.meta │ │ │ │ │ ├── Imported.meta │ │ │ │ │ ├── Imported │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── CampFire_Smoke.mat │ │ │ │ │ │ │ ├── CampFire_Smoke.mat.meta │ │ │ │ │ │ │ ├── FireA.mat │ │ │ │ │ │ │ ├── FireA.mat.meta │ │ │ │ │ │ │ ├── Glow.mat │ │ │ │ │ │ │ ├── Glow.mat.meta │ │ │ │ │ │ │ ├── OilSmoke.mat │ │ │ │ │ │ │ └── OilSmoke.mat.meta │ │ │ │ │ │ ├── Rocks.meta │ │ │ │ │ │ ├── Rocks │ │ │ │ │ │ │ ├── meshes.meta │ │ │ │ │ │ │ ├── meshes │ │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ │ ├── No Name.mat │ │ │ │ │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ │ │ │ │ ├── rock_01Mat.mat │ │ │ │ │ │ │ │ │ └── rock_01Mat.mat.meta │ │ │ │ │ │ │ │ ├── rock_01.fbx │ │ │ │ │ │ │ │ └── rock_01.fbx.meta │ │ │ │ │ │ │ ├── textures.meta │ │ │ │ │ │ │ └── textures │ │ │ │ │ │ │ │ ├── diffuse.tga │ │ │ │ │ │ │ │ ├── diffuse.tga.meta │ │ │ │ │ │ │ │ ├── normal.jpg │ │ │ │ │ │ │ │ └── normal.jpg.meta │ │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ │ ├── Shaders │ │ │ │ │ │ │ ├── AddSmooth_Layer.shader │ │ │ │ │ │ │ ├── AddSmooth_Layer.shader.meta │ │ │ │ │ │ │ ├── Add_Layer.shader │ │ │ │ │ │ │ ├── Add_Layer.shader.meta │ │ │ │ │ │ │ ├── Particle Alpha Blend_IgnoreFog.shader │ │ │ │ │ │ │ └── Particle Alpha Blend_IgnoreFog.shader.meta │ │ │ │ │ │ ├── SpaceShip.meta │ │ │ │ │ │ ├── SpaceShip │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.mat │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.mat.meta │ │ │ │ │ │ │ │ ├── Space_Shooter_Material.mat │ │ │ │ │ │ │ │ └── Space_Shooter_Material.mat.meta │ │ │ │ │ │ │ ├── Space_Shooter.fbm.meta │ │ │ │ │ │ │ ├── Space_Shooter.fbm │ │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg │ │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg.meta │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg.meta │ │ │ │ │ │ │ │ ├── 1K_Spec.jpg │ │ │ │ │ │ │ │ └── 1K_Spec.jpg.meta │ │ │ │ │ │ │ ├── Space_Shooter.fbx │ │ │ │ │ │ │ ├── Space_Shooter.fbx.meta │ │ │ │ │ │ │ ├── Textures.meta │ │ │ │ │ │ │ └── Textures │ │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg │ │ │ │ │ │ │ │ ├── 1K_Body-NM.jpg.meta │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg │ │ │ │ │ │ │ │ ├── 1K_Body-TXTR.jpg.meta │ │ │ │ │ │ │ │ ├── 1K_Spec.jpg │ │ │ │ │ │ │ │ ├── 1K_Spec.jpg.meta │ │ │ │ │ │ │ │ ├── 1K_TXTR+Spec.tif │ │ │ │ │ │ │ │ ├── 1K_TXTR+Spec.tif.meta │ │ │ │ │ │ │ │ ├── 512_TXTR+Spec.tif │ │ │ │ │ │ │ │ └── 512_TXTR+Spec.tif.meta │ │ │ │ │ │ ├── Textures.meta │ │ │ │ │ │ └── Textures │ │ │ │ │ │ │ ├── CampfireLeft.psd │ │ │ │ │ │ │ ├── CampfireLeft.psd.meta │ │ │ │ │ │ │ ├── Campfireright.psd │ │ │ │ │ │ │ ├── Campfireright.psd.meta │ │ │ │ │ │ │ ├── Candle.psd │ │ │ │ │ │ │ ├── Candle.psd.meta │ │ │ │ │ │ │ ├── Glow.png │ │ │ │ │ │ │ ├── Glow.png.meta │ │ │ │ │ │ │ ├── SmokeB.psd │ │ │ │ │ │ │ ├── SmokeB.psd.meta │ │ │ │ │ │ │ ├── Spark.png │ │ │ │ │ │ │ ├── Spark.png.meta │ │ │ │ │ │ │ ├── fire.png │ │ │ │ │ │ │ ├── fire.png.meta │ │ │ │ │ │ │ ├── fire2.png │ │ │ │ │ │ │ └── fire2.png.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── stars.mat │ │ │ │ │ │ ├── stars.mat.meta │ │ │ │ │ │ ├── target.mat │ │ │ │ │ │ └── target.mat.meta │ │ │ │ │ ├── Meshes.meta │ │ │ │ │ ├── Meshes │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── Material.mat │ │ │ │ │ │ │ ├── Material.mat.meta │ │ │ │ │ │ │ ├── shipdoor.mat │ │ │ │ │ │ │ └── shipdoor.mat.meta │ │ │ │ │ │ ├── ship.fbx │ │ │ │ │ │ ├── ship.fbx.meta │ │ │ │ │ │ ├── shipfractured.fbx │ │ │ │ │ │ └── shipfractured.fbx.meta │ │ │ │ │ ├── Physics.meta │ │ │ │ │ ├── Physics │ │ │ │ │ │ ├── Default.physicMaterial │ │ │ │ │ │ └── Default.physicMaterial.meta │ │ │ │ │ ├── Sounds.meta │ │ │ │ │ ├── Sounds │ │ │ │ │ │ ├── NearExplosionA.ogg │ │ │ │ │ │ ├── NearExplosionA.ogg.meta │ │ │ │ │ │ ├── The Space (Looping Middle).mp3 │ │ │ │ │ │ └── The Space (Looping Middle).mp3.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── Background.meta │ │ │ │ │ │ ├── Background │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png.meta │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ └── Materials │ │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield 1.mat │ │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield 1.mat.meta │ │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.mat │ │ │ │ │ │ │ └── Free_Shmup_Sprites_Starfield.mat.meta │ │ │ │ │ │ ├── asteroid.png │ │ │ │ │ │ ├── asteroid.png.meta │ │ │ │ │ │ ├── ship.png │ │ │ │ │ │ ├── ship.png.meta │ │ │ │ │ │ ├── stars.jpg │ │ │ │ │ │ ├── stars.jpg.meta │ │ │ │ │ │ ├── target.png │ │ │ │ │ │ └── target.png.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Asteroid.prefab │ │ │ │ │ ├── Asteroid.prefab.meta │ │ │ │ │ ├── Explosion.prefab │ │ │ │ │ ├── Explosion.prefab.meta │ │ │ │ │ ├── Fire.prefab │ │ │ │ │ ├── Fire.prefab.meta │ │ │ │ │ ├── Ship.prefab │ │ │ │ │ ├── Ship.prefab.meta │ │ │ │ │ ├── ShipBroken.prefab │ │ │ │ │ └── ShipBroken.prefab.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── Installers.meta │ │ │ │ │ └── Installers │ │ │ │ │ │ ├── GameSettingsInstaller.asset │ │ │ │ │ │ └── GameSettingsInstaller.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Asteroid.meta │ │ │ │ │ ├── Asteroid │ │ │ │ │ ├── Asteroid.cs │ │ │ │ │ ├── Asteroid.cs.meta │ │ │ │ │ ├── AsteroidManager.cs │ │ │ │ │ └── AsteroidManager.cs.meta │ │ │ │ │ ├── Installers.meta │ │ │ │ │ ├── Installers │ │ │ │ │ ├── GameInstaller.cs │ │ │ │ │ ├── GameInstaller.cs.meta │ │ │ │ │ ├── GameSettingsInstaller.cs │ │ │ │ │ └── GameSettingsInstaller.cs.meta │ │ │ │ │ ├── Main.meta │ │ │ │ │ ├── Main │ │ │ │ │ ├── GameController.cs │ │ │ │ │ └── GameController.cs.meta │ │ │ │ │ ├── Misc.meta │ │ │ │ │ ├── Misc │ │ │ │ │ ├── AudioHandler.cs │ │ │ │ │ ├── AudioHandler.cs.meta │ │ │ │ │ ├── GuiHandler.cs │ │ │ │ │ ├── GuiHandler.cs.meta │ │ │ │ │ ├── LevelHelper.cs │ │ │ │ │ ├── LevelHelper.cs.meta │ │ │ │ │ ├── TilingBackground.cs │ │ │ │ │ └── TilingBackground.cs.meta │ │ │ │ │ ├── Ship.meta │ │ │ │ │ ├── Ship │ │ │ │ │ ├── Ship.cs │ │ │ │ │ ├── Ship.cs.meta │ │ │ │ │ ├── ShipStateFactory.cs │ │ │ │ │ ├── ShipStateFactory.cs.meta │ │ │ │ │ ├── States.meta │ │ │ │ │ └── States │ │ │ │ │ │ ├── BrokenShipFactory.cs │ │ │ │ │ │ ├── BrokenShipFactory.cs.meta │ │ │ │ │ │ ├── ExplosionFactory.cs │ │ │ │ │ │ ├── ExplosionFactory.cs.meta │ │ │ │ │ │ ├── ShipState.cs │ │ │ │ │ │ ├── ShipState.cs.meta │ │ │ │ │ │ ├── ShipStateDead.cs │ │ │ │ │ │ ├── ShipStateDead.cs.meta │ │ │ │ │ │ ├── ShipStateMoving.cs │ │ │ │ │ │ ├── ShipStateMoving.cs.meta │ │ │ │ │ │ ├── ShipStateWaitingToStart.cs │ │ │ │ │ │ └── ShipStateWaitingToStart.cs.meta │ │ │ │ │ ├── Util.meta │ │ │ │ │ └── Util │ │ │ │ │ ├── GameEvents.cs │ │ │ │ │ ├── GameEvents.cs.meta │ │ │ │ │ ├── UnityExtensionMethods.cs │ │ │ │ │ └── UnityExtensionMethods.cs.meta │ │ │ ├── SampleGame2 (Advanced).meta │ │ │ ├── SampleGame2 (Advanced) │ │ │ │ ├── Media.meta │ │ │ │ ├── Media │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Background.mat │ │ │ │ │ │ ├── Background.mat.meta │ │ │ │ │ │ ├── BulletEnemy.mat │ │ │ │ │ │ ├── BulletEnemy.mat.meta │ │ │ │ │ │ ├── BulletPlayer.mat │ │ │ │ │ │ ├── BulletPlayer.mat.meta │ │ │ │ │ │ ├── Enemy1.mat │ │ │ │ │ │ ├── Enemy1.mat.meta │ │ │ │ │ │ ├── Flame01.mat │ │ │ │ │ │ ├── Flame01.mat.meta │ │ │ │ │ │ ├── Player.mat │ │ │ │ │ │ └── Player.mat.meta │ │ │ │ │ ├── Models.meta │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── Material.mat │ │ │ │ │ │ │ └── Material.mat.meta │ │ │ │ │ │ ├── ship.fbx │ │ │ │ │ │ └── ship.fbx.meta │ │ │ │ │ ├── Physics.meta │ │ │ │ │ ├── Physics │ │ │ │ │ │ ├── Enemy.physicMaterial │ │ │ │ │ │ └── Enemy.physicMaterial.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ ├── Prefabs │ │ │ │ │ │ ├── Bullet.prefab │ │ │ │ │ │ ├── Bullet.prefab.meta │ │ │ │ │ │ ├── Enemy.prefab │ │ │ │ │ │ ├── Enemy.prefab.meta │ │ │ │ │ │ ├── Explosion.prefab │ │ │ │ │ │ └── Explosion.prefab.meta │ │ │ │ │ ├── Sounds.meta │ │ │ │ │ ├── Sounds │ │ │ │ │ │ ├── damage.wav │ │ │ │ │ │ ├── damage.wav.meta │ │ │ │ │ │ ├── explosion.aiff │ │ │ │ │ │ ├── explosion.aiff.meta │ │ │ │ │ │ ├── laser.wav │ │ │ │ │ │ ├── laser.wav.meta │ │ │ │ │ │ ├── laser2.wav │ │ │ │ │ │ └── laser2.wav.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── Flame.psd │ │ │ │ │ │ ├── Flame.psd.meta │ │ │ │ │ │ ├── Free_Shmup_Sprites_Starfield.png │ │ │ │ │ │ └── Free_Shmup_Sprites_Starfield.png.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── SpaceFighter.meta │ │ │ │ │ └── SpaceFighter │ │ │ │ │ │ ├── GameSettings.asset │ │ │ │ │ │ └── GameSettings.asset.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── SpaceFighter.unity │ │ │ │ │ ├── SpaceFighter.unity.meta │ │ │ │ │ ├── SpaceFighterSettings.lighting │ │ │ │ │ └── SpaceFighterSettings.lighting.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Enemy.meta │ │ │ │ │ ├── Enemy │ │ │ │ │ ├── EnemyCommonSettings.cs │ │ │ │ │ ├── EnemyCommonSettings.cs.meta │ │ │ │ │ ├── EnemyDeathHandler.cs │ │ │ │ │ ├── EnemyDeathHandler.cs.meta │ │ │ │ │ ├── EnemyFacade.cs │ │ │ │ │ ├── EnemyFacade.cs.meta │ │ │ │ │ ├── EnemyRegistry.cs │ │ │ │ │ ├── EnemyRegistry.cs.meta │ │ │ │ │ ├── EnemyRotationHandler.cs │ │ │ │ │ ├── EnemyRotationHandler.cs.meta │ │ │ │ │ ├── EnemyStateManager.cs │ │ │ │ │ ├── EnemyStateManager.cs.meta │ │ │ │ │ ├── EnemyTunables.cs │ │ │ │ │ ├── EnemyTunables.cs.meta │ │ │ │ │ ├── EnemyView.cs │ │ │ │ │ ├── EnemyView.cs.meta │ │ │ │ │ ├── GameEvents.cs │ │ │ │ │ ├── GameEvents.cs.meta │ │ │ │ │ ├── States.meta │ │ │ │ │ └── States │ │ │ │ │ │ ├── EnemyStateAttack.cs │ │ │ │ │ │ ├── EnemyStateAttack.cs.meta │ │ │ │ │ │ ├── EnemyStateFollow.cs │ │ │ │ │ │ ├── EnemyStateFollow.cs.meta │ │ │ │ │ │ ├── EnemyStateIdle.cs │ │ │ │ │ │ └── EnemyStateIdle.cs.meta │ │ │ │ │ ├── Installers.meta │ │ │ │ │ ├── Installers │ │ │ │ │ ├── EnemyInstaller.cs │ │ │ │ │ ├── EnemyInstaller.cs.meta │ │ │ │ │ ├── GameInstaller.cs │ │ │ │ │ ├── GameInstaller.cs.meta │ │ │ │ │ ├── GameSettingsInstaller.cs │ │ │ │ │ ├── GameSettingsInstaller.cs.meta │ │ │ │ │ ├── GameSignalsInstaller.cs │ │ │ │ │ ├── GameSignalsInstaller.cs.meta │ │ │ │ │ ├── PlayerInstaller.cs │ │ │ │ │ └── PlayerInstaller.cs.meta │ │ │ │ │ ├── Misc.meta │ │ │ │ │ ├── Misc │ │ │ │ │ ├── AudioPlayer.cs │ │ │ │ │ ├── AudioPlayer.cs.meta │ │ │ │ │ ├── Bullet.cs │ │ │ │ │ ├── Bullet.cs.meta │ │ │ │ │ ├── ControlsDisplay.cs │ │ │ │ │ ├── ControlsDisplay.cs.meta │ │ │ │ │ ├── EnemySpawner.cs │ │ │ │ │ ├── EnemySpawner.cs.meta │ │ │ │ │ ├── Explosion.cs │ │ │ │ │ ├── Explosion.cs.meta │ │ │ │ │ ├── GameRestartHandler.cs │ │ │ │ │ ├── GameRestartHandler.cs.meta │ │ │ │ │ ├── LevelBoundary.cs │ │ │ │ │ └── LevelBoundary.cs.meta │ │ │ │ │ ├── Player.meta │ │ │ │ │ └── Player │ │ │ │ │ ├── PlayerDamageHandler.cs │ │ │ │ │ ├── PlayerDamageHandler.cs.meta │ │ │ │ │ ├── PlayerDirectionHandler.cs │ │ │ │ │ ├── PlayerDirectionHandler.cs.meta │ │ │ │ │ ├── PlayerFacade.cs │ │ │ │ │ ├── PlayerFacade.cs.meta │ │ │ │ │ ├── PlayerGui.cs │ │ │ │ │ ├── PlayerGui.cs.meta │ │ │ │ │ ├── PlayerHealthWatcher.cs │ │ │ │ │ ├── PlayerHealthWatcher.cs.meta │ │ │ │ │ ├── PlayerInputHandler.cs │ │ │ │ │ ├── PlayerInputHandler.cs.meta │ │ │ │ │ ├── PlayerInputState.cs │ │ │ │ │ ├── PlayerInputState.cs.meta │ │ │ │ │ ├── PlayerModel.cs │ │ │ │ │ ├── PlayerModel.cs.meta │ │ │ │ │ ├── PlayerMoveHandler.cs │ │ │ │ │ ├── PlayerMoveHandler.cs.meta │ │ │ │ │ ├── PlayerShootHandler.cs │ │ │ │ │ └── PlayerShootHandler.cs.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.csproj │ │ │ │ └── Zenject-Signals.csproj.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.csproj │ │ │ └── Zenject.csproj.meta │ │ │ ├── Version.txt │ │ │ ├── Version.txt.meta │ │ │ ├── package.json │ │ │ ├── package.json.meta │ │ │ ├── zenject.asmdef │ │ │ └── zenject.asmdef.meta │ ├── Resources.meta │ ├── Resources │ │ ├── DOTweenSettings.asset │ │ ├── DOTweenSettings.asset.meta │ │ ├── MainDI.prefab │ │ └── MainDI.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── CustomScriptableBuildSettings.cs │ │ ├── CustomScriptableBuildSettings.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AndroidVersionIncrementor.cs │ │ │ ├── AndroidVersionIncrementor.cs.meta │ │ │ ├── BuildCommand.cs │ │ │ ├── BuildCommand.cs.meta │ │ │ ├── CheckEditorCommands.cs │ │ │ └── CheckEditorCommands.cs.meta │ │ ├── Environmentaljson.meta │ │ └── Environmentaljson │ │ │ ├── BuildSettingsAndroid.asset │ │ │ ├── BuildSettingsAndroid.asset.meta │ │ │ ├── ENVIRONMENT.json │ │ │ ├── ENVIRONMENT.json.meta │ │ │ ├── EnvironmentJsonService.cs │ │ │ └── EnvironmentJsonService.cs.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── Utils.meta │ ├── Utils │ │ ├── Adresables.meta │ │ ├── Adresables │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── App.Core.Addresables.Editor.asmdef │ │ │ │ ├── App.Core.Addresables.Editor.asmdef.meta │ │ │ │ ├── PrePostProcessCallbacks.meta │ │ │ │ ├── PrePostProcessCallbacks │ │ │ │ │ ├── AddressablesPreProcessCallbacks.cs │ │ │ │ │ └── AddressablesPreProcessCallbacks.cs.meta │ │ │ │ ├── UniAddressablesMissingFileTest.meta │ │ │ │ └── UniAddressablesMissingFileTest │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ ├── AddressablesMissingFileTester.cs │ │ │ │ │ └── AddressablesMissingFileTester.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── package.json │ │ │ │ │ └── package.json.meta │ │ │ ├── RefToUniTaskAddressables.asmref │ │ │ ├── RefToUniTaskAddressables.asmref.meta │ │ │ ├── link.xml │ │ │ └── link.xml.meta │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── App.Core.Attributes.Editor.asmdef │ │ │ │ ├── App.Core.Attributes.Editor.asmdef.meta │ │ │ │ ├── AssetPathAttribute.meta │ │ │ │ ├── AssetPathAttribute │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ │ ├── AssetPathDrawer.cs │ │ │ │ │ │ ├── AssetPathDrawer.cs.meta │ │ │ │ │ │ ├── SceneReferenceDrawer.cs │ │ │ │ │ │ └── SceneReferenceDrawer.cs.meta │ │ │ │ ├── DrawIf.Editor.meta │ │ │ │ ├── DrawIf.Editor │ │ │ │ │ ├── DrawIfPropertyDrawer.cs │ │ │ │ │ ├── DrawIfPropertyDrawer.cs.meta │ │ │ │ │ ├── EditorUtils.cs │ │ │ │ │ └── EditorUtils.cs.meta │ │ │ │ ├── ExecutionOrder.Editor.meta │ │ │ │ ├── ExecutionOrder.Editor │ │ │ │ │ ├── ExecutionOrderAttributeEditor.cs │ │ │ │ │ └── ExecutionOrderAttributeEditor.cs.meta │ │ │ │ ├── Password.Editor.meta │ │ │ │ ├── Password.Editor │ │ │ │ │ ├── PasswordDrawer.cs │ │ │ │ │ └── PasswordDrawer.cs.meta │ │ │ │ ├── csc.rsp │ │ │ │ └── csc.rsp.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── App.Core.Attributes.asmdef │ │ │ │ ├── App.Core.Attributes.asmdef.meta │ │ │ │ ├── AssetPathAttribute.meta │ │ │ │ ├── AssetPathAttribute │ │ │ │ ├── AssetPathAttribute.cs │ │ │ │ ├── AssetPathAttribute.cs.meta │ │ │ │ ├── AssetPathConvert.cs │ │ │ │ ├── AssetPathConvert.cs.meta │ │ │ │ ├── AssetPathTypes.cs │ │ │ │ ├── AssetPathTypes.cs.meta │ │ │ │ ├── SceneReference.cs │ │ │ │ └── SceneReference.cs.meta │ │ │ │ ├── ClassReference.meta │ │ │ │ ├── ClassReference │ │ │ │ ├── ClassTypeConstraintAttribute.cs │ │ │ │ └── ClassTypeConstraintAttribute.cs.meta │ │ │ │ ├── DrawIf.meta │ │ │ │ ├── DrawIf │ │ │ │ ├── DrawIfAttribute.cs │ │ │ │ └── DrawIfAttribute.cs.meta │ │ │ │ ├── ExecutionOrderAttribute.meta │ │ │ │ ├── ExecutionOrderAttribute │ │ │ │ ├── ExecuteOrderAttribute.cs │ │ │ │ └── ExecuteOrderAttribute.cs.meta │ │ │ │ ├── PasswordAttribute.meta │ │ │ │ ├── PasswordAttribute │ │ │ │ ├── PasswordAttribute.cs │ │ │ │ └── PasswordAttribute.cs.meta │ │ │ │ ├── csc.rsp │ │ │ │ └── csc.rsp.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── App.Core.Editor.asmdef │ │ │ ├── App.Core.Editor.asmdef.meta │ │ │ ├── BuildTools.meta │ │ │ ├── BuildTools │ │ │ │ ├── AndroidSettings.cs │ │ │ │ ├── AndroidSettings.cs.meta │ │ │ │ ├── BuildPreProcess.cs │ │ │ │ ├── BuildPreProcess.cs.meta │ │ │ │ ├── OpenTerminalCommands.cs │ │ │ │ └── OpenTerminalCommands.cs.meta │ │ │ ├── CI.meta │ │ │ ├── CI │ │ │ │ ├── PostProcessIOS.cs │ │ │ │ ├── PostProcessIOS.cs.meta │ │ │ │ ├── UnityUCBbuild.cs │ │ │ │ └── UnityUCBbuild.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Plugins.meta │ │ │ │ └── Plugins │ │ │ │ │ ├── FindReference2.meta │ │ │ │ │ └── FindReference2 │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ ├── Script.meta │ │ │ │ │ └── Script │ │ │ │ │ │ ├── FR2_Asset.cs │ │ │ │ │ │ ├── FR2_Asset.cs.meta │ │ │ │ │ │ ├── FR2_AssetType.cs │ │ │ │ │ │ ├── FR2_AssetType.cs.meta │ │ │ │ │ │ ├── FR2_Cache.cs │ │ │ │ │ │ ├── FR2_Cache.cs.meta │ │ │ │ │ │ ├── FR2_CacheEditor.cs │ │ │ │ │ │ ├── FR2_CacheEditor.cs.meta │ │ │ │ │ │ ├── FR2_Duplicate.cs │ │ │ │ │ │ ├── FR2_Duplicate.cs.meta │ │ │ │ │ │ ├── FR2_Export.cs │ │ │ │ │ │ ├── FR2_Export.cs.meta │ │ │ │ │ │ ├── FR2_Helper.cs │ │ │ │ │ │ ├── FR2_Helper.cs.meta │ │ │ │ │ │ ├── FR2_Ref.cs │ │ │ │ │ │ ├── FR2_Ref.cs.meta │ │ │ │ │ │ ├── FR2_SceneCache.cs │ │ │ │ │ │ ├── FR2_SceneCache.cs.meta │ │ │ │ │ │ ├── FR2_SceneWindow.cs │ │ │ │ │ │ ├── FR2_SceneWindow.cs.meta │ │ │ │ │ │ ├── FR2_Selection.cs │ │ │ │ │ │ ├── FR2_Selection.cs.meta │ │ │ │ │ │ ├── FR2_TreeUI.cs │ │ │ │ │ │ ├── FR2_TreeUI.cs.meta │ │ │ │ │ │ ├── FR2_TreeUI2.cs │ │ │ │ │ │ ├── FR2_TreeUI2.cs.meta │ │ │ │ │ │ ├── FR2_Unity.cs │ │ │ │ │ │ ├── FR2_Unity.cs.meta │ │ │ │ │ │ ├── FR2_UsedInBuild.cs │ │ │ │ │ │ ├── FR2_UsedInBuild.cs.meta │ │ │ │ │ │ ├── FR2_Window.cs │ │ │ │ │ │ ├── FR2_Window.cs.meta │ │ │ │ │ │ ├── FR2_WindowAll.cs │ │ │ │ │ │ ├── FR2_WindowAll.cs.meta │ │ │ │ │ │ ├── FR2_WindowBase.cs │ │ │ │ │ │ └── FR2_WindowBase.cs.meta │ │ │ │ │ ├── FR2_Readme.pdf │ │ │ │ │ └── FR2_Readme.pdf.meta │ │ │ ├── FindMissingScripts.meta │ │ │ ├── FindMissingScripts │ │ │ │ ├── FindMissingScripts.asmdef │ │ │ │ ├── FindMissingScripts.asmdef.meta │ │ │ │ ├── FindMissingScripts.cs │ │ │ │ └── FindMissingScripts.cs.meta │ │ │ ├── Misc.meta │ │ │ ├── Misc │ │ │ │ ├── AnimatorExtractor.meta │ │ │ │ ├── AnimatorExtractor │ │ │ │ │ ├── AnimatorExtractor.cs │ │ │ │ │ └── AnimatorExtractor.cs.meta │ │ │ │ ├── EditorHelpers.meta │ │ │ │ ├── EditorHelpers │ │ │ │ │ ├── EditorCoroutine.cs │ │ │ │ │ └── EditorCoroutine.cs.meta │ │ │ │ ├── GoToInitialScene.cs │ │ │ │ └── GoToInitialScene.cs.meta │ │ │ ├── ReplacePrefabs.meta │ │ │ ├── ReplacePrefabs │ │ │ │ ├── ExternalReference.cs │ │ │ │ ├── ExternalReference.cs.meta │ │ │ │ ├── FindReferenceBaseParameter.cs │ │ │ │ ├── FindReferenceBaseParameter.cs.meta │ │ │ │ ├── GameObjectHelper.cs │ │ │ │ ├── GameObjectHelper.cs.meta │ │ │ │ ├── ReferencedObject.cs │ │ │ │ ├── ReferencedObject.cs.meta │ │ │ │ ├── ReferencingComponent.cs │ │ │ │ ├── ReferencingComponent.cs.meta │ │ │ │ ├── ReplacePrefabsWindow.cs │ │ │ │ ├── ReplacePrefabsWindow.cs.meta │ │ │ │ ├── SimilarGameObject.cs │ │ │ │ ├── SimilarGameObject.cs.meta │ │ │ │ ├── TransferableField.cs │ │ │ │ ├── TransferableField.cs.meta │ │ │ │ ├── TransferableType.cs │ │ │ │ ├── TransferableType.cs.meta │ │ │ │ ├── WindowValuesChangeManager.cs │ │ │ │ ├── WindowValuesChangeManager.cs.meta │ │ │ │ ├── WindowValuesChangeSnapshop.cs │ │ │ │ ├── WindowValuesChangeSnapshop.cs.meta │ │ │ │ ├── WindowValuesChangeSummary.cs │ │ │ │ └── WindowValuesChangeSummary.cs.meta │ │ │ ├── ScriptableObjectStateMachine.meta │ │ │ ├── ScriptableObjectStateMachine │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ │ ├── BehaviourStateEventEditor.cs │ │ │ │ │ ├── BehaviourStateEventEditor.cs.meta │ │ │ │ │ ├── EditorForIState.cs │ │ │ │ │ ├── EditorForIState.cs.meta │ │ │ │ │ ├── EditorForStateParameters.cs │ │ │ │ │ └── EditorForStateParameters.cs.meta │ │ │ ├── SerializableCallback.meta │ │ │ ├── SerializableCallback │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ │ ├── SerializableCallbackDrawer.cs │ │ │ │ │ └── SerializableCallbackDrawer.cs.meta │ │ │ ├── Shell.meta │ │ │ ├── Shell │ │ │ │ ├── ProcessShell.cs │ │ │ │ └── ProcessShell.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── CustomDrawerUpdaterContentSizeFitter.cs │ │ │ │ └── CustomDrawerUpdaterContentSizeFitter.cs.meta │ │ │ ├── csc.rsp │ │ │ └── csc.rsp.meta │ │ ├── NewUnityInputSystem.meta │ │ ├── NewUnityInputSystem │ │ │ ├── App.Core.NewInputSystem.asmdef │ │ │ ├── App.Core.NewInputSystem.asmdef.meta │ │ │ ├── PersistantBinderStorage.cs │ │ │ └── PersistantBinderStorage.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── App.Core.asmdef │ │ │ ├── App.Core.asmdef.meta │ │ │ ├── BoundsExtension.meta │ │ │ ├── BoundsExtension │ │ │ ├── BoundsExtensions.cs │ │ │ ├── BoundsExtensions.cs.meta │ │ │ ├── ExtendedBounds.cs │ │ │ ├── ExtendedBounds.cs.meta │ │ │ ├── IBoundsProvider.cs │ │ │ ├── IBoundsProvider.cs.meta │ │ │ ├── Providers.meta │ │ │ └── Providers │ │ │ │ ├── BoundsProvider.cs │ │ │ │ ├── BoundsProvider.cs.meta │ │ │ │ ├── BoundsProviderSimple.cs │ │ │ │ ├── BoundsProviderSimple.cs.meta │ │ │ │ ├── CanvasBoundsProvider.cs │ │ │ │ ├── CanvasBoundsProvider.cs.meta │ │ │ │ ├── TextSizerTMPRO.cs │ │ │ │ └── TextSizerTMPRO.cs.meta │ │ │ ├── CommonPatterns.meta │ │ │ ├── CommonPatterns │ │ │ ├── DisposableLambda.cs │ │ │ ├── DisposableLambda.cs.meta │ │ │ ├── ICommand.cs │ │ │ ├── ICommand.cs.meta │ │ │ ├── IResult.cs │ │ │ ├── IResult.cs.meta │ │ │ ├── IState.cs │ │ │ ├── IState.cs.meta │ │ │ ├── IStrategy.cs │ │ │ ├── IStrategy.cs.meta │ │ │ ├── IVisitor.cs │ │ │ ├── IVisitor.cs.meta │ │ │ ├── InfoBox.cs │ │ │ ├── InfoBox.cs.meta │ │ │ ├── InternalVisibleTo.cs │ │ │ ├── InternalVisibleTo.cs.meta │ │ │ ├── LazyItem.cs │ │ │ ├── LazyItem.cs.meta │ │ │ ├── Observer.meta │ │ │ ├── Observer │ │ │ │ ├── EventBus.cs │ │ │ │ ├── EventBus.cs.meta │ │ │ │ ├── IEventBus.cs │ │ │ │ └── IEventBus.cs.meta │ │ │ ├── ServiceLocator.meta │ │ │ ├── ServiceLocator │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CHANGELOG.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ ├── Runtime │ │ │ │ │ ├── IPersistantSingleton.cs │ │ │ │ │ ├── IPersistantSingleton.cs.meta │ │ │ │ │ ├── MessageRouter.cs │ │ │ │ │ ├── MessageRouter.cs.meta │ │ │ │ │ ├── ServiceFactory.cs │ │ │ │ │ └── ServiceFactory.cs.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ │ ├── Singleton.cs │ │ │ ├── Singleton.cs.meta │ │ │ ├── UnityCancelToken.cs │ │ │ ├── UnityCancelToken.cs.meta │ │ │ ├── UnitySerializedDictionary.cs │ │ │ └── UnitySerializedDictionary.cs.meta │ │ │ ├── Credentials.meta │ │ │ ├── Credentials │ │ │ ├── CredentialMonoProvider.cs │ │ │ ├── CredentialMonoProvider.cs.meta │ │ │ ├── CredentialsStorageSo.cs │ │ │ └── CredentialsStorageSo.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── CancellationTokenSourceExtension.cs │ │ │ ├── CancellationTokenSourceExtension.cs.meta │ │ │ ├── ColorExtensions.cs │ │ │ ├── ColorExtensions.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── DateTimeExtensions.cs │ │ │ ├── DateTimeExtensions.cs.meta │ │ │ ├── DelegateExtensions.cs │ │ │ ├── DelegateExtensions.cs.meta │ │ │ ├── EnumExtensions.cs │ │ │ ├── EnumExtensions.cs.meta │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── EnumerableExtensions.cs.meta │ │ │ ├── EventTriggerExtensions.cs │ │ │ ├── EventTriggerExtensions.cs.meta │ │ │ ├── FileExtensions.cs │ │ │ ├── FileExtensions.cs.meta │ │ │ ├── FloatExtension.cs │ │ │ ├── FloatExtension.cs.meta │ │ │ ├── GameObjectExtensions.cs │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ ├── Headers.cs │ │ │ ├── Headers.cs.meta │ │ │ ├── LockMonitorExtensions.cs │ │ │ ├── LockMonitorExtensions.cs.meta │ │ │ ├── MRTK.meta │ │ │ ├── MRTK │ │ │ │ ├── Extensions.meta │ │ │ │ ├── Extensions │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ │ ├── CRUD.meta │ │ │ │ │ ├── CRUD │ │ │ │ │ │ ├── IGenericAuthForCrudService.cs │ │ │ │ │ │ ├── IGenericAuthForCrudService.cs.meta │ │ │ │ │ │ ├── IGenericCrud.cs │ │ │ │ │ │ ├── IGenericCrud.cs.meta │ │ │ │ │ │ ├── IGenericStorageService.cs │ │ │ │ │ │ └── IGenericStorageService.cs.meta │ │ │ │ │ ├── Input.meta │ │ │ │ │ ├── Input │ │ │ │ │ │ ├── GlobalThemeEngineConfig.meta │ │ │ │ │ │ ├── GlobalThemeEngineConfig │ │ │ │ │ │ │ ├── GlobalThemeEngineConfiguration.cs │ │ │ │ │ │ │ ├── GlobalThemeEngineConfiguration.cs.meta │ │ │ │ │ │ │ ├── GlobalThemeEngineListener.cs │ │ │ │ │ │ │ └── GlobalThemeEngineListener.cs.meta │ │ │ │ │ │ ├── InputField.meta │ │ │ │ │ │ ├── InputField │ │ │ │ │ │ │ ├── CopyFromNonStandardKeyboard.cs │ │ │ │ │ │ │ ├── CopyFromNonStandardKeyboard.cs.meta │ │ │ │ │ │ │ ├── InputField (TMP) _Password.prefab │ │ │ │ │ │ │ ├── InputField (TMP) _Password.prefab.meta │ │ │ │ │ │ │ ├── RigNonStandardKeyboardRef.cs │ │ │ │ │ │ │ ├── RigNonStandardKeyboardRef.cs.meta │ │ │ │ │ │ │ ├── TMP_InvokeKeyBoard.cs │ │ │ │ │ │ │ └── TMP_InvokeKeyBoard.cs.meta │ │ │ │ │ │ ├── Interactable.meta │ │ │ │ │ │ ├── Interactable │ │ │ │ │ │ │ ├── AutoFixAfterManipulation.cs │ │ │ │ │ │ │ ├── AutoFixAfterManipulation.cs.meta │ │ │ │ │ │ │ ├── MRTK_AutoCLickOnBTN.cs │ │ │ │ │ │ │ ├── MRTK_AutoCLickOnBTN.cs.meta │ │ │ │ │ │ │ ├── MRTK_InteractableSubscribe.cs │ │ │ │ │ │ │ └── MRTK_InteractableSubscribe.cs.meta │ │ │ │ │ │ ├── Manipulator.meta │ │ │ │ │ │ ├── Manipulator │ │ │ │ │ │ │ ├── OnManipulationCheckSpatialOnBounds.cs │ │ │ │ │ │ │ └── OnManipulationCheckSpatialOnBounds.cs.meta │ │ │ │ │ │ ├── Speech.meta │ │ │ │ │ │ └── Speech │ │ │ │ │ │ │ ├── SpeechInputListener.cs │ │ │ │ │ │ │ └── SpeechInputListener.cs.meta │ │ │ │ │ ├── PrimitiveClipList.meta │ │ │ │ │ ├── PrimitiveClipList │ │ │ │ │ │ ├── ClippingPrimitivesList.cs │ │ │ │ │ │ ├── ClippingPrimitivesList.cs.meta │ │ │ │ │ │ ├── IgnoreClippingPrimiteItem.cs │ │ │ │ │ │ └── IgnoreClippingPrimiteItem.cs.meta │ │ │ │ │ ├── Rest.meta │ │ │ │ │ ├── Rest │ │ │ │ │ │ ├── IRestCacheService.cs │ │ │ │ │ │ ├── IRestCacheService.cs.meta │ │ │ │ │ │ ├── MRTKRestExtensions.cs │ │ │ │ │ │ └── MRTKRestExtensions.cs.meta │ │ │ │ │ ├── SoftServe.MRTKRef.asmdef │ │ │ │ │ └── SoftServe.MRTKRef.asmdef.meta │ │ │ │ ├── SoftServe.RefToMRTK.asmref │ │ │ │ └── SoftServe.RefToMRTK.asmref.meta │ │ │ ├── Math3d.cs │ │ │ ├── Math3d.cs.meta │ │ │ ├── ObjectExtensions.cs │ │ │ ├── ObjectExtensions.cs.meta │ │ │ ├── PlayableDirectorExtensions.cs │ │ │ ├── PlayableDirectorExtensions.cs.meta │ │ │ ├── RandomExtension.cs │ │ │ ├── RandomExtension.cs.meta │ │ │ ├── RectTransformExtensions.cs │ │ │ ├── RectTransformExtensions.cs.meta │ │ │ ├── ScreenExtensions.cs │ │ │ ├── ScreenExtensions.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── Texture2DExtensions.cs │ │ │ ├── Texture2DExtensions.cs.meta │ │ │ ├── TransformExtension.cs │ │ │ ├── TransformExtension.cs.meta │ │ │ ├── TypeExtensions.cs │ │ │ ├── TypeExtensions.cs.meta │ │ │ ├── UniRx.meta │ │ │ ├── UniRx │ │ │ │ ├── BufferedMessagebroker.cs │ │ │ │ └── BufferedMessagebroker.cs.meta │ │ │ ├── UnityEngineTestExtension.cs │ │ │ ├── UnityEngineTestExtension.cs.meta │ │ │ ├── VectorExtensions.cs │ │ │ └── VectorExtensions.cs.meta │ │ │ ├── ScriptableObjectStateMachine.meta │ │ │ ├── ScriptableObjectStateMachine │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── WorkflowBehaviourState.cs │ │ │ │ ├── WorkflowBehaviourState.cs.meta │ │ │ │ ├── WorkflowBehaviourStateEvent.cs │ │ │ │ ├── WorkflowBehaviourStateEvent.cs.meta │ │ │ │ ├── WorkflowBehaviourStateEventListener.cs │ │ │ │ ├── WorkflowBehaviourStateEventListener.cs.meta │ │ │ │ ├── WorkflowStateAndParameters.cs │ │ │ │ ├── WorkflowStateAndParameters.cs.meta │ │ │ │ ├── WorkflowStateControllerView.cs │ │ │ │ └── WorkflowStateControllerView.cs.meta │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── AnimationParamSerializable.cs │ │ │ │ └── AnimationParamSerializable.cs.meta │ │ │ ├── StateMachineMonoActions.meta │ │ │ ├── StateMachineMonoActions │ │ │ │ ├── WorkflowStateEnterActions.cs │ │ │ │ ├── WorkflowStateEnterActions.cs.meta │ │ │ │ ├── WorkflowStateExitActions.cs │ │ │ │ └── WorkflowStateExitActions.cs.meta │ │ │ ├── WorkflowStateSampleEntry.cs │ │ │ └── WorkflowStateSampleEntry.cs.meta │ │ │ ├── SerializableCallback.meta │ │ │ ├── SerializableCallback │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Attributes.meta │ │ │ │ ├── Attributes │ │ │ │ ├── TargetConstraintAttribute.cs │ │ │ │ └── TargetConstraintAttribute.cs.meta │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ ├── InvokableCallback.cs │ │ │ │ ├── InvokableCallback.cs.meta │ │ │ │ ├── InvokableCallbackBase.cs │ │ │ │ ├── InvokableCallbackBase.cs.meta │ │ │ │ ├── InvokableEvent.cs │ │ │ │ ├── InvokableEvent.cs.meta │ │ │ │ ├── InvokableEventBase.cs │ │ │ │ ├── InvokableEventBase.cs.meta │ │ │ │ ├── SerializableCallbackBase.cs │ │ │ │ ├── SerializableCallbackBase.cs.meta │ │ │ │ ├── SerializableEventBase.cs │ │ │ │ └── SerializableEventBase.cs.meta │ │ │ │ ├── PrimitiveType.meta │ │ │ │ ├── PrimitiveType │ │ │ │ ├── SerializablePrimitiveTypes.cs │ │ │ │ └── SerializablePrimitiveTypes.cs.meta │ │ │ │ ├── SerializableCallback.cs │ │ │ │ └── SerializableCallback.cs.meta │ │ │ ├── Serializer.meta │ │ │ ├── Serializer │ │ │ ├── BinarySerializer.cs │ │ │ ├── BinarySerializer.cs.meta │ │ │ ├── IDataSerializer.cs │ │ │ ├── IDataSerializer.cs.meta │ │ │ ├── PlayerPrefsSerializer.cs │ │ │ ├── PlayerPrefsSerializer.cs.meta │ │ │ ├── SerializedType.cs │ │ │ └── SerializedType.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ ├── Abstract.meta │ │ │ ├── Abstract │ │ │ │ ├── ICacheMock.cs │ │ │ │ ├── ICacheMock.cs.meta │ │ │ │ ├── IDateTimeProvider.cs │ │ │ │ ├── IDateTimeProvider.cs.meta │ │ │ │ ├── INetworkService.cs │ │ │ │ ├── INetworkService.cs.meta │ │ │ │ ├── IService.cs │ │ │ │ ├── IService.cs.meta │ │ │ │ ├── IUser.cs │ │ │ │ └── IUser.cs.meta │ │ │ ├── AuthMessageBus.meta │ │ │ └── AuthMessageBus │ │ │ │ ├── AuthEventBus.cs │ │ │ │ └── AuthEventBus.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── CheckerBoxShader.shader │ │ │ └── CheckerBoxShader.shader.meta │ │ │ ├── Timers.meta │ │ │ ├── Timers │ │ │ ├── DateTimeTimer.cs │ │ │ ├── DateTimeTimer.cs.meta │ │ │ ├── UnityTimer.cs │ │ │ ├── UnityTimer.cs.meta │ │ │ ├── UnityTimers.cs │ │ │ └── UnityTimers.cs.meta │ │ │ ├── Tools.meta │ │ │ ├── Tools │ │ │ ├── CurrentDeviceSettings.meta │ │ │ ├── CurrentDeviceSettings │ │ │ │ ├── LogCurrentDeviceSettings.cs │ │ │ │ └── LogCurrentDeviceSettings.cs.meta │ │ │ ├── EditorPlayerPrefs.meta │ │ │ ├── EditorPlayerPrefs │ │ │ │ ├── SerializedFullPlayerPrefsFromEditor.cs │ │ │ │ └── SerializedFullPlayerPrefsFromEditor.cs.meta │ │ │ ├── Filtering.meta │ │ │ ├── Filtering │ │ │ │ ├── FilterProcessor.cs │ │ │ │ └── FilterProcessor.cs.meta │ │ │ ├── FixMissingMethods.meta │ │ │ ├── FixMissingMethods │ │ │ │ ├── FixMissingUnityEventsMethods.cs │ │ │ │ └── FixMissingUnityEventsMethods.cs.meta │ │ │ ├── HelpfullMonobehaviours.meta │ │ │ ├── HelpfullMonobehaviours │ │ │ │ ├── MonoBehaviourUnityEvents.cs │ │ │ │ └── MonoBehaviourUnityEvents.cs.meta │ │ │ ├── QuickAPI.meta │ │ │ ├── QuickAPI │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── EditorSaveUtils.cs │ │ │ │ │ ├── EditorSaveUtils.cs.meta │ │ │ │ │ ├── QuickEditorAssetStaticAPI.cs │ │ │ │ │ ├── QuickEditorAssetStaticAPI.cs.meta │ │ │ │ │ ├── QuickEditorFileStaticAPI.cs │ │ │ │ │ ├── QuickEditorFileStaticAPI.cs.meta │ │ │ │ │ ├── QuickEditorPathStaticAPI.cs │ │ │ │ │ ├── QuickEditorPathStaticAPI.cs.meta │ │ │ │ │ ├── QuickEditorStaticAPI.cs │ │ │ │ │ ├── QuickEditorStaticAPI.cs.meta │ │ │ │ │ ├── QuickReflectionExtensions.cs │ │ │ │ │ └── QuickReflectionExtensions.cs.meta │ │ │ ├── ReverseClip.meta │ │ │ └── ReverseClip │ │ │ │ ├── ReverseClip.cs │ │ │ │ └── ReverseClip.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ ├── AnchorMaxPosition.cs │ │ │ ├── AnchorMaxPosition.cs.meta │ │ │ ├── Caret.meta │ │ │ ├── Caret │ │ │ │ ├── CustomCaret (1).prefab │ │ │ │ ├── CustomCaret (1).prefab.meta │ │ │ │ ├── CustomCaret.cs │ │ │ │ └── CustomCaret.cs.meta │ │ │ ├── CustomClampedScrollRect.cs │ │ │ ├── CustomClampedScrollRect.cs.meta │ │ │ ├── DeviceScreensFix.cs │ │ │ ├── DeviceScreensFix.cs.meta │ │ │ ├── ScreenFitting.cs │ │ │ ├── ScreenFitting.cs.meta │ │ │ ├── UIFitTransformToRectTransform.cs │ │ │ ├── UIFitTransformToRectTransform.cs.meta │ │ │ ├── UIRectTransformUpdateWorldCollider.cs │ │ │ ├── UIRectTransformUpdateWorldCollider.cs.meta │ │ │ ├── UIRectTransformUpdateWorldScale.cs │ │ │ ├── UIRectTransformUpdateWorldScale.cs.meta │ │ │ ├── UpdateContentSizeFitter.cs │ │ │ └── UpdateContentSizeFitter.cs.meta │ │ │ ├── UnityHelperComponents.meta │ │ │ ├── UnityHelperComponents │ │ │ ├── RuntimeCullingItem.cs │ │ │ ├── RuntimeCullingItem.cs.meta │ │ │ ├── RuntimeCullingUpdater.cs │ │ │ ├── RuntimeCullingUpdater.cs.meta │ │ │ ├── VideoPlayerAudioSourceOutput.cs │ │ │ └── VideoPlayerAudioSourceOutput.cs.meta │ │ │ ├── csc.rsp │ │ │ └── csc.rsp.meta │ ├── csc-strict.rsp │ ├── csc-strict.rsp.meta │ ├── csc.rsp │ └── csc.rsp.meta ├── CodeCoverage │ └── Report │ │ └── badge_combined.svg ├── Entitas.properties ├── Jenny.properties ├── Logs │ └── ApiUpdaterCheck.txt ├── Packages │ ├── local │ │ ├── PlayerPrefsEditor-1.4.0 │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ImportPlayerPrefsWizard.cs │ │ │ │ ├── ImportPlayerPrefsWizard.cs.meta │ │ │ │ ├── Mac.meta │ │ │ │ ├── Mac │ │ │ │ │ ├── Plist.cs │ │ │ │ │ └── Plist.cs.meta │ │ │ │ ├── PlayerPrefsEditor.Editor.asmdef │ │ │ │ ├── PlayerPrefsEditor.Editor.asmdef.meta │ │ │ │ ├── PlayerPrefsEditor.cs │ │ │ │ └── PlayerPrefsEditor.cs.meta │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── BaseEncryptionKeyInitializer.cs │ │ │ │ ├── BaseEncryptionKeyInitializer.cs.meta │ │ │ │ ├── GameEncryptionKeyInitializerTemplate.cs.txt │ │ │ │ ├── GameEncryptionKeyInitializerTemplate.cs.txt.meta │ │ │ │ ├── PlayerPrefsEditor.asmdef │ │ │ │ ├── PlayerPrefsEditor.asmdef.meta │ │ │ │ ├── PlayerPrefsUtility.cs │ │ │ │ ├── PlayerPrefsUtility.cs.meta │ │ │ │ ├── SimpleEncryption.cs │ │ │ │ └── SimpleEncryption.cs.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ │ ├── UpmGitExtension-2.0.1 │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug_report.md │ │ │ │ │ ├── feature_request.md │ │ │ │ │ └── question.md │ │ │ │ ├── pull_request_template.md │ │ │ │ └── workflows │ │ │ │ │ ├── release.yml │ │ │ │ │ └── test.yml │ │ │ ├── .gitignore │ │ │ ├── .releaserc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODE_OF_CONDUCT.md.meta │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTING.md.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Coffee.UpmGitExtension.meta │ │ │ │ ├── Coffee.UpmGitExtension │ │ │ │ │ ├── Extensions.meta │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── IEnumerableExtensions.cs │ │ │ │ │ │ ├── IEnumerableExtensions.cs.meta │ │ │ │ │ │ ├── PackageExtensions.cs │ │ │ │ │ │ ├── PackageExtensions.cs.meta │ │ │ │ │ │ ├── ReflectionExtensions.cs │ │ │ │ │ │ ├── ReflectionExtensions.cs.meta │ │ │ │ │ │ ├── UpmPackageVersionEx.cs │ │ │ │ │ │ ├── UpmPackageVersionEx.cs.meta │ │ │ │ │ │ ├── VisualElementExtension.cs │ │ │ │ │ │ └── VisualElementExtension.cs.meta │ │ │ │ │ ├── GitPackageDataBase.cs │ │ │ │ │ ├── GitPackageDataBase.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── GitButton.cs │ │ │ │ │ │ ├── GitButton.cs.meta │ │ │ │ │ │ ├── GitPackageInstallationWindow.cs │ │ │ │ │ │ ├── GitPackageInstallationWindow.cs.meta │ │ │ │ │ │ ├── PackageDetailsExtension.cs │ │ │ │ │ │ ├── PackageDetailsExtension.cs.meta │ │ │ │ │ │ ├── SearchResultListView.cs │ │ │ │ │ │ └── SearchResultListView.cs.meta │ │ │ │ │ ├── Unity.PackageManagerUI.Develop.Editor.asmdef │ │ │ │ │ ├── Unity.PackageManagerUI.Develop.Editor.asmdef.meta │ │ │ │ │ ├── UpmGitExtension.cs │ │ │ │ │ └── UpmGitExtension.cs.meta │ │ │ │ ├── Commands.meta │ │ │ │ ├── Commands │ │ │ │ │ ├── fetch-packages.js │ │ │ │ │ ├── fetch-packages.js.meta │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.js.meta │ │ │ │ ├── Legacy.meta │ │ │ │ ├── Legacy │ │ │ │ │ ├── Coffee.UpmGitExtension.LegacyWarning.asmdef │ │ │ │ │ ├── Coffee.UpmGitExtension.LegacyWarning.asmdef.meta │ │ │ │ │ ├── LegacyWarning.cs │ │ │ │ │ └── LegacyWarning.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ │ ├── GitButton.uss │ │ │ │ │ ├── GitButton.uss.meta │ │ │ │ │ ├── GitPackageInstallationWindow.uss │ │ │ │ │ ├── GitPackageInstallationWindow.uss.meta │ │ │ │ │ ├── GitPackageInstallationWindow.uxml │ │ │ │ │ ├── GitPackageInstallationWindow.uxml.meta │ │ │ │ │ ├── Logos.meta │ │ │ │ │ ├── Logos │ │ │ │ │ ├── AzureRepos-Logo.png │ │ │ │ │ ├── AzureRepos-Logo.png.meta │ │ │ │ │ ├── Bitbucket-Logo.png │ │ │ │ │ ├── Bitbucket-Logo.png.meta │ │ │ │ │ ├── GitHub-Logo-Dark.png │ │ │ │ │ ├── GitHub-Logo-Dark.png.meta │ │ │ │ │ ├── GitHub-Logo-Light.png │ │ │ │ │ ├── GitHub-Logo-Light.png.meta │ │ │ │ │ ├── GitLab-Logo.png │ │ │ │ │ └── GitLab-Logo.png.meta │ │ │ │ │ ├── giticon.png │ │ │ │ │ └── giticon.png.meta │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ │ ├── platform-tools_r33.0.2 │ │ │ ├── AdbWinApi.dll │ │ │ ├── AdbWinUsbApi.dll │ │ │ ├── NOTICE.txt │ │ │ ├── adb.exe │ │ │ ├── dmtracedump.exe │ │ │ ├── etc1tool.exe │ │ │ ├── fastboot.exe │ │ │ ├── hprof-conv.exe │ │ │ ├── libwinpthread-1.dll │ │ │ ├── make_f2fs.exe │ │ │ ├── make_f2fs_casefold.exe │ │ │ ├── mke2fs.conf │ │ │ ├── mke2fs.exe │ │ │ ├── source.properties │ │ │ ├── sqlite3.exe │ │ │ └── unity_log_command.sh │ │ └── unityautomatedqafork │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── Documentation~ │ │ │ ├── AutomatorExamples.md │ │ │ ├── Automators.md │ │ │ ├── AutomatorsIncluded.md │ │ │ ├── CloudDeviceTestingCLI.md │ │ │ ├── Driver.md │ │ │ ├── GameCrawler.md │ │ │ ├── RecordedPlayback.md │ │ │ ├── RecordedTesting.md │ │ │ ├── Reporting.md │ │ │ ├── TableOfContents.md │ │ │ ├── TestGeneration.md │ │ │ └── index.md │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── AdvancedQuerying.meta │ │ │ ├── AdvancedQuerying │ │ │ │ ├── GameElementValidator.cs │ │ │ │ └── GameElementValidator.cs.meta │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── AutomatorFramework.meta │ │ │ ├── AutomatorFramework │ │ │ │ ├── AutomatedRunEditor.cs │ │ │ │ ├── AutomatedRunEditor.cs.meta │ │ │ │ ├── AutomatedRunTestCreator.cs │ │ │ │ ├── AutomatedRunTestCreator.cs.meta │ │ │ │ ├── StagedRunEditor.cs │ │ │ │ └── StagedRunEditor.cs.meta │ │ │ ├── BuildPipeline.meta │ │ │ ├── BuildPipeline │ │ │ │ ├── BuildProcessor.cs │ │ │ │ └── BuildProcessor.cs.meta │ │ │ ├── Cloud.meta │ │ │ ├── Cloud │ │ │ │ ├── CloudReportImages.meta │ │ │ │ ├── CloudTestBuilder.cs │ │ │ │ ├── CloudTestBuilder.cs.meta │ │ │ │ ├── CloudTestClient.cs │ │ │ │ ├── CloudTestClient.cs.meta │ │ │ │ ├── CloudTestConfig.cs │ │ │ │ ├── CloudTestConfig.cs.meta │ │ │ │ ├── CloudTestDeviceInput.cs │ │ │ │ ├── CloudTestDeviceInput.cs.meta │ │ │ │ ├── CloudTestDeviceInputEditor.cs │ │ │ │ ├── CloudTestDeviceInputEditor.cs.meta │ │ │ │ ├── CloudTestPipeline.cs │ │ │ │ ├── CloudTestPipeline.cs.meta │ │ │ │ ├── CloudTestRunner.cs │ │ │ │ ├── CloudTestRunner.cs.meta │ │ │ │ ├── CloudTools.cs │ │ │ │ ├── CloudTools.cs.meta │ │ │ │ ├── CloudWindow.meta │ │ │ │ └── CloudWindow │ │ │ │ │ ├── CloudTestingSubWindow.cs │ │ │ │ │ ├── CloudTestingSubWindow.cs.meta │ │ │ │ │ ├── cloud-window.uss │ │ │ │ │ ├── cloud-window.uss.meta │ │ │ │ │ ├── cloud-window.uxml │ │ │ │ │ └── cloud-window.uxml.meta │ │ │ ├── CodeGeneration.meta │ │ │ ├── CodeGeneration │ │ │ │ ├── CodeGenerationSubWindow.cs │ │ │ │ ├── CodeGenerationSubWindow.cs.meta │ │ │ │ ├── CodeGenerator.cs │ │ │ │ ├── CodeGenerator.cs.meta │ │ │ │ ├── TestCreatorUtils.cs │ │ │ │ ├── TestCreatorUtils.cs.meta │ │ │ │ ├── code-generation.uss │ │ │ │ ├── code-generation.uss.meta │ │ │ │ ├── code-generation.uxml │ │ │ │ └── code-generation.uxml.meta │ │ │ ├── Hub.meta │ │ │ ├── Hub │ │ │ │ ├── HubSubWindow.cs │ │ │ │ ├── HubSubWindow.cs.meta │ │ │ │ ├── HubWindow.cs │ │ │ │ ├── HubWindow.cs.meta │ │ │ │ ├── hub-all-windows.uss │ │ │ │ ├── hub-all-windows.uss.meta │ │ │ │ ├── hub-window.uss │ │ │ │ ├── hub-window.uss.meta │ │ │ │ ├── hub-window.uxml │ │ │ │ ├── hub-window.uxml.meta │ │ │ │ └── hub_icons.meta │ │ │ ├── Inspector.meta │ │ │ ├── Inspector │ │ │ │ ├── ReadOnlyPropertyDrawer.cs │ │ │ │ └── ReadOnlyPropertyDrawer.cs.meta │ │ │ ├── RecordedPlayback.meta │ │ │ ├── RecordedPlayback │ │ │ │ ├── EditorClient.cs │ │ │ │ ├── EditorClient.cs.meta │ │ │ │ ├── RecordedPlaybackEditor.cs │ │ │ │ ├── RecordedPlaybackEditor.cs.meta │ │ │ │ ├── RecordingInputModuleEditor.cs │ │ │ │ ├── RecordingInputModuleEditor.cs.meta │ │ │ │ ├── RecordingUploadWindow.cs │ │ │ │ ├── RecordingUploadWindow.cs.meta │ │ │ │ ├── Windows.meta │ │ │ │ └── Windows │ │ │ │ │ ├── CompositeRecordings.meta │ │ │ │ │ ├── CompositeRecordings │ │ │ │ │ ├── CompositeRecordingsWindow.cs │ │ │ │ │ ├── CompositeRecordingsWindow.cs.meta │ │ │ │ │ ├── CompositeRecordingsWindow.uss │ │ │ │ │ ├── CompositeRecordingsWindow.uss.meta │ │ │ │ │ ├── CompositeRecordingsWindow.uxml │ │ │ │ │ └── CompositeRecordingsWindow.uxml.meta │ │ │ │ │ ├── RecordedPlayback.meta │ │ │ │ │ └── RecordedPlayback │ │ │ │ │ ├── RecordedPlaybackSubWindow.cs │ │ │ │ │ ├── RecordedPlaybackSubWindow.cs.meta │ │ │ │ │ ├── icons.meta │ │ │ │ │ ├── recording-window.uss │ │ │ │ │ ├── recording-window.uss.meta │ │ │ │ │ ├── recording-window.uxml │ │ │ │ │ └── recording-window.uxml.meta │ │ │ ├── ScriptTemplates.meta │ │ │ ├── ScriptTemplates │ │ │ │ ├── Assembly Definition-GeneratedTests.asmdef.txt │ │ │ │ ├── Assembly Definition-GeneratedTests.asmdef.txt.meta │ │ │ │ ├── C# Script-GeneratedAutomatedRunTests.cs.txt │ │ │ │ ├── C# Script-GeneratedAutomatedRunTests.cs.txt.meta │ │ │ │ ├── C# Script-GeneratedRecordedTests.cs.txt │ │ │ │ └── C# Script-GeneratedRecordedTests.cs.txt.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── AutomatedQABuildConfig.cs │ │ │ │ ├── AutomatedQABuildConfig.cs.meta │ │ │ │ ├── SettingsSubWindow.cs │ │ │ │ ├── SettingsSubWindow.cs.meta │ │ │ │ ├── settings-window.uss │ │ │ │ ├── settings-window.uss.meta │ │ │ │ ├── settings-window.uxml │ │ │ │ └── settings-window.uxml.meta │ │ │ ├── ToolsWindow.meta │ │ │ ├── ToolsWindow │ │ │ │ ├── ToolsSubWindow.cs │ │ │ │ ├── ToolsSubWindow.cs.meta │ │ │ │ ├── tools-window.uss │ │ │ │ ├── tools-window.uss.meta │ │ │ │ ├── tools-window.uxml │ │ │ │ └── tools-window.uxml.meta │ │ │ ├── Unity.AutomatedQA.Editor.asmdef │ │ │ ├── Unity.AutomatedQA.Editor.asmdef.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── EditorHttpClient.cs │ │ │ │ └── EditorHttpClient.cs.meta │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ ├── AQALogger.cs │ │ │ ├── AQALogger.cs.meta │ │ │ ├── AdvancedQuerying.meta │ │ │ ├── AdvancedQuerying │ │ │ │ ├── Driver.cs │ │ │ │ ├── Driver.cs.meta │ │ │ │ ├── ElementQuery.cs │ │ │ │ ├── ElementQuery.cs.meta │ │ │ │ ├── GameElement.cs │ │ │ │ └── GameElement.cs.meta │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── AutomatedQaTools.cs │ │ │ ├── AutomatedQaTools.cs.meta │ │ │ ├── AutomatorFramework.meta │ │ │ ├── AutomatorFramework │ │ │ │ ├── AutomatedRun.cs │ │ │ │ ├── AutomatedRun.cs.meta │ │ │ │ ├── AutomatedTestSuiteBase.cs │ │ │ │ ├── AutomatedTestSuiteBase.cs.meta │ │ │ │ ├── AutomationListener.cs │ │ │ │ ├── AutomationListener.cs.meta │ │ │ │ ├── Automator.cs │ │ │ │ ├── Automator.cs.meta │ │ │ │ ├── AutomatorConfig.cs │ │ │ │ ├── AutomatorConfig.cs.meta │ │ │ │ ├── CentralAutomationController.cs │ │ │ │ ├── CentralAutomationController.cs.meta │ │ │ │ ├── StagedRun.cs │ │ │ │ ├── StagedRun.cs.meta │ │ │ │ ├── StartAutomatedQAFromEditor.cs │ │ │ │ └── StartAutomatedQAFromEditor.cs.meta │ │ │ ├── Automators.meta │ │ │ ├── Automators │ │ │ │ ├── GameCrawler.cs │ │ │ │ ├── GameCrawler.cs.meta │ │ │ │ ├── GameCrawlerAutomator.cs │ │ │ │ ├── GameCrawlerAutomator.cs.meta │ │ │ │ ├── LoadSceneAutomator.cs │ │ │ │ ├── LoadSceneAutomator.cs.meta │ │ │ │ ├── RecordedPlaybackAutomator.cs │ │ │ │ └── RecordedPlaybackAutomator.cs.meta │ │ │ ├── Cloud.meta │ │ │ ├── Cloud │ │ │ │ ├── CloudTestAttribute.cs │ │ │ │ ├── CloudTestAttribute.cs.meta │ │ │ │ ├── CloudTestManager.cs │ │ │ │ ├── CloudTestManager.cs.meta │ │ │ │ ├── CloudTestingData.cs │ │ │ │ └── CloudTestingData.cs.meta │ │ │ ├── Inspector.meta │ │ │ ├── Inspector │ │ │ │ ├── ReadOnlyAttribute.cs │ │ │ │ └── ReadOnlyAttribute.cs.meta │ │ │ ├── RecordedPlayback.meta │ │ │ ├── RecordedPlayback │ │ │ │ ├── GameListenerHandler.cs │ │ │ │ ├── GameListenerHandler.cs.meta │ │ │ │ ├── InputCodes.cs │ │ │ │ ├── InputCodes.cs.meta │ │ │ │ ├── RecordableInput.cs │ │ │ │ ├── RecordableInput.cs.meta │ │ │ │ ├── RecordedPlayback.cs │ │ │ │ ├── RecordedPlayback.cs.meta │ │ │ │ ├── RecordedPlaybackAnalytics.cs │ │ │ │ ├── RecordedPlaybackAnalytics.cs.meta │ │ │ │ ├── RecordedPlaybackController.cs │ │ │ │ ├── RecordedPlaybackController.cs.meta │ │ │ │ ├── RecordedTesting.meta │ │ │ │ ├── RecordedTesting │ │ │ │ │ ├── RecordedTestAttribute.cs │ │ │ │ │ ├── RecordedTestAttribute.cs.meta │ │ │ │ │ ├── RecordedTesting.cs │ │ │ │ │ └── RecordedTesting.cs.meta │ │ │ │ ├── RecordingInputModule.cs │ │ │ │ ├── RecordingInputModule.cs.meta │ │ │ │ ├── RuntimeClient.cs │ │ │ │ ├── RuntimeClient.cs.meta │ │ │ │ ├── StartRecordedPlaybackFromEditor.cs │ │ │ │ └── StartRecordedPlaybackFromEditor.cs.meta │ │ │ ├── Reporting.meta │ │ │ ├── Reporting │ │ │ │ ├── MultiDeviceReportHtmlManifest.cs │ │ │ │ ├── MultiDeviceReportHtmlManifest.cs.meta │ │ │ │ ├── ReportingManager.cs │ │ │ │ ├── ReportingManager.cs.meta │ │ │ │ ├── ReportingMonitor.cs │ │ │ │ ├── ReportingMonitor.cs.meta │ │ │ │ ├── SingleTestReportHtmlManifest.cs │ │ │ │ └── SingleTestReportHtmlManifest.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── AutomatedQASettings.cs │ │ │ │ ├── AutomatedQASettings.cs.meta │ │ │ │ ├── AutomatedQASettingsKeys.cs │ │ │ │ └── AutomatedQASettingsKeys.cs.meta │ │ │ ├── TestTools.meta │ │ │ ├── TestTools │ │ │ │ ├── AutomatedQATestBase.cs │ │ │ │ ├── AutomatedQATestBase.cs.meta │ │ │ │ ├── AutomatedTestSuite.cs │ │ │ │ ├── AutomatedTestSuite.cs.meta │ │ │ │ ├── CloudTestResults.cs │ │ │ │ ├── CloudTestResults.cs.meta │ │ │ │ ├── RecordedTestSuite.cs │ │ │ │ ├── RecordedTestSuite.cs.meta │ │ │ │ ├── Unity.AutomatedQA.TestTools.asmdef │ │ │ │ └── Unity.AutomatedQA.TestTools.asmdef.meta │ │ │ ├── Unity.AutomatedQA.asmdef │ │ │ ├── Unity.AutomatedQA.asmdef.meta │ │ │ ├── Utils.meta │ │ │ ├── Utils │ │ │ │ ├── HttpClient.cs │ │ │ │ └── HttpClient.cs.meta │ │ │ ├── VisualFx.meta │ │ │ └── VisualFx │ │ │ │ ├── Click.meta │ │ │ │ ├── Click │ │ │ │ ├── Pulse.cs │ │ │ │ ├── Pulse.cs.meta │ │ │ │ ├── PulseManager.cs │ │ │ │ └── PulseManager.cs.meta │ │ │ │ ├── Drag.meta │ │ │ │ ├── Drag │ │ │ │ ├── DragFeedback.cs │ │ │ │ ├── DragFeedback.cs.meta │ │ │ │ ├── DragMark.prefab │ │ │ │ └── DragMark.prefab.meta │ │ │ │ ├── Highlight.meta │ │ │ │ ├── Highlight │ │ │ │ ├── HighlightElement.cs │ │ │ │ └── HighlightElement.cs.meta │ │ │ │ ├── VisualFxManager.cs │ │ │ │ └── VisualFxManager.cs.meta │ │ │ ├── SampleAssets.meta │ │ │ ├── SampleAssets │ │ │ ├── CloudTestSubmission.asset │ │ │ ├── CloudTestSubmission.asset.meta │ │ │ ├── DefaultAndroid.asset │ │ │ ├── DefaultAndroid.asset.meta │ │ │ ├── DefaultiOS.asset │ │ │ └── DefaultiOS.asset.meta │ │ │ ├── Tests.meta │ │ │ ├── Tests │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── BuildTests.cs │ │ │ │ ├── BuildTests.cs.meta │ │ │ │ ├── RecordableInputTests.cs │ │ │ │ ├── RecordableInputTests.cs.meta │ │ │ │ ├── TestPlatforms.meta │ │ │ │ ├── TestPlatforms │ │ │ │ │ ├── Cloud.meta │ │ │ │ │ └── Cloud │ │ │ │ │ │ ├── CloudTestBuilderTests.cs │ │ │ │ │ │ ├── CloudTestBuilderTests.cs.meta │ │ │ │ │ │ ├── MockCloudTestClient.cs │ │ │ │ │ │ └── MockCloudTestClient.cs.meta │ │ │ │ ├── Unity.AutomatedQA.Tests.Editor.asmdef │ │ │ │ └── Unity.AutomatedQA.Tests.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── RecordedPlaybackTests.cs │ │ │ │ ├── RecordedPlaybackTests.cs.meta │ │ │ │ ├── Unity.AutomatedQA.Tests.asmdef │ │ │ │ └── Unity.AutomatedQA.Tests.asmdef.meta │ │ │ ├── Tools.meta │ │ │ ├── Tools │ │ │ ├── ServiceAccountManager.meta │ │ │ ├── ServiceAccountManager │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── config.ini │ │ │ │ ├── config.ini.meta │ │ │ │ ├── requirements.txt │ │ │ │ ├── requirements.txt.meta │ │ │ │ ├── service-account.py │ │ │ │ └── service-account.py.meta │ │ │ ├── ios-builder.sh │ │ │ └── ios-builder.sh.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.testtools.codecoverage │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── SGH.AssetUsageAnalyzer.Editor.csproj ├── SGH.AssetUsageAnalyzer.csproj ├── UnityArchitecture.sln ├── UserSettings │ └── EditorUserSettings.asset └── certificates │ └── store_here.txt ├── README.md ├── ci-license-activation ├── Activation.md └── ExampleFromAtrifactCiActivationStage │ ├── actual_job_artifact_from_get_license_unity3d.alf │ └── this_is_final_unity_manual_license_Unity_v2020.x.ulf ├── ci ├── before_script.sh ├── build.sh ├── docker_build.sh ├── docker_test.sh ├── for_local_build.sh ├── for_local_test.sh ├── get_activation_file.sh ├── nunit-transforms │ ├── LICENSE.txt │ └── nunit3-junit.xslt ├── pre-build_cache.sh └── test.sh ├── local-ci ├── base_app_info.sh ├── dev_local_cached_mono_android_build.sh ├── dev_local_cached_mono_android_build_with_editorTests.sh ├── fill_unity_directory.sh ├── local_build_stand_alone.sh └── local_il2cpp_android_build.sh └── variables ├── .develop.env └── .qa.env /0_unity_project/Assets/0_App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52f12f4ef211e38488fab6ea19b262a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cbdd98d2c7312f4d97b8e0e7075f135 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Editor/com.custom.app.editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9602c8fa75fe1f4479ad4156e312387f 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Library.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b51a0e9e277b51346a257091cafe73ea 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Library/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd9c37e5fb52c4b448a50baf54d2f417 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Library/Prefabs/ReactiveClicker.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c5e7ab4c54024408e2401094037663 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Library/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cdd1f648a0cbaa49bbf7130fa40846f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Library/Scenes/ProjectRun.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efca2bd22cb50a84db05b08e687684f4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fae70fa883e2d94ab196491c9cf68b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/Entry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 112c22c9c6b4a324597cda5e258ff64d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/Entry/com.custom.app.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2644ac3434d955b449e5d4d57bc84df9 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1772a668a3496894489fafc13cfa7fd5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/AddressablesNames.cs: -------------------------------------------------------------------------------- 1 | using Neueec.AssetUsagesTool.Addresssables; 2 | 3 | namespace App.Runtime.MVC 4 | { 5 | public static class AddressablesNames 6 | { 7 | [AddressablesKey] public const string ClickerView = "ClickerView"; 8 | } 9 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/AddressablesNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56d65763acf745fc896f52b28b63b6e5 3 | timeCreated: 1658599881 -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/Example1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5c14527db1b1f40b4f22161c2952f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/Example1/ClickerModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4af4fc5dee144758f0ff9ec67abafe7 3 | timeCreated: 1658596630 -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/Example1/ReactiveClickerInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f839f53d3a2f4779a82610a92ad326a8 3 | timeCreated: 1658598811 -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/MVC/app.mvc.feature1.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4aca58cde7864e43b3dabf702a087d2 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/csc-strict.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649 2 | -warnaserror:0114,1522,0108,0162,0414,0219 -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/csc-strict.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5807963a7201c3847bb64b29fb432387 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618,1701 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb35b8119bb3d3449beedd5fd7e2e033 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Runtime/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c3f519aaf883994880a013d7da0c286 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a064e3778dc01cc48aa9f67855a1e0a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/EditMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b714099369e73b34694be00543f55ad9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/EditMode/com.custom.app.tests.editmode.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 808fd61cdd7402649b80818fc733091d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e4998029bff3b458966abe0b2a1521 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/Extensions/com.custom.test.extensions.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70077197e11069445b62e7c06247155e 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/Playmode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3faa3cfa3c8de0f4ab4b882c9f061241 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/0_App/Tests/Playmode/com.custom.app.tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 096a9440891c37e4a964f519057195ac 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AddressableAssetsData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f837dcc08e884408ded7d572a864c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AddressableAssetsData/AssetGroupTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dff583a8cd8a2b747abee94b162a265e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AddressableAssetsData/AssetGroups.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e3d11b34e2ceb468c9f49f74ac3da6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AddressableAssetsData/AssetGroups/Schemas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5929c3b55725b8e46a023e5d868bd04a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AddressableAssetsData/DataBuilders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68ed667d87787d345a790a7a5e001499 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4e16e1f773195248aa1be570bd96117 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1d6b6bc56634548ac63049ffa7bcbe2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Editor/Addresssables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aff7474d46f4646b4743ea41836865c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Editor/com.addressables.keyusage.editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e84bef1542a64acdaba64018098681fe 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d899d9b49dbb45b994ed7b76fb9cb85b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Runtime/AddressablesKeyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Neueec.AssetUsagesTool.Addresssables 4 | { 5 | [AttributeUsage(AttributeTargets.Field)] 6 | public class AddressablesKeyAttribute : Attribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/Runtime/com.addressables.keyusage.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b697e45c9c0498db09969d923e631d0 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.noeeuc.assetusagesanalyzer", 3 | "displayName" : "con.noeeuc.AssetUsageAnalyzer", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/AssetUsageAnalyzer/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 349bb7cff9e24d2aa6afe2b2e672fc90 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AutomatedQA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3124847c5369d294cb1bbfdcb26e31b8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/AutomatedQA/BuildConfig.json: -------------------------------------------------------------------------------- 1 | {"_buildType":0,"_hostPlatform":0,"_recordingFileStorage":0} -------------------------------------------------------------------------------- /0_unity_project/Assets/AutomatedQA/BuildConfig.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb5c1cafffbbc074993b5d1cc4a6c08f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 928a6c64b9eb81642a7c7fe6050a7cce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cbe8c24a13ff5643a2dea9874b1480e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Compile.cs: -------------------------------------------------------------------------------- 1 | namespace DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor { 2 | 3 | class Compile { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Logging.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Networking.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Serialization.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/DesperateDevs.Utils.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25719d2cbf2933a4286fe9549452e6ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.Analytics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.Analytics.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.CodeGeneration.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/Editor/DesperateDevs.Unity.Editor.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f491dc53f6266ce4fb107b022a1de4cf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/Images/Jenny-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/DesperateDevs/Editor/Images/Jenny-Header.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/DesperateDevs/Editor/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49bc21af8bcb54d41a278f72f24a42d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdc046ed7b6516141bf9d3faf088e5c0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd977d067ac70814c8a9dcf83ed476b2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72c78c5aaf1d6114493c903a0bf098b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Migration.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Migration.Unity.Editor.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Migration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Migration.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Entitas.Unity.Editor.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22ba74a5e2ce94b4cb6b7b5a17383b62 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasContextHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasContextHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityLinkHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityLinkHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityLinkWarnHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasEntityLinkWarnHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasHeader.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasSystemsWarnHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Images/EntitasSystemsWarnHierarchyIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 191ab30c5303efa4fa1dcef1a0222a85 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Editor/Plugins/Entitas.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Editor/Plugins/Entitas.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Entitas.CodeGeneration.Attributes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Entitas.CodeGeneration.Attributes.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Entitas.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Entitas.Unity.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Entitas.VisualDebugging.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Entitas.VisualDebugging.Unity.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Entitas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/ECS/Entitas/Entitas.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/Entitas.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 042cca0a167b85d4784d04a980d00eef 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/EntitasUpgradeGuide.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 026d2aa83125b314f8ac91e567852525 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4fbf244e664d274f8236c1e94766357 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/ECS/Entitas/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d48d0348de3e2a547945a379f42e670a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e27483fffd304cc4c845a9461c4c5086 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa0dfdc33ce918b458f72b18fd2ed805 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ede03c3569897b458e7a6ccb4f6f1e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Documentation/CustomDefineManager_V10.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42fdb679d17b55d499d7c6c5e9d87262 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca0fa76c624d43249b97767781a05e09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a316b79686eb8b24e85638a757b99424 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Scripts/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd10c4d8d92315344b5fde83f5508542 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Editor/CustomDefineManager/Scripts/Resources/CustomDefineManagerData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b434a634049740b4388b9a27d4aff8df 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/FR2_Cache.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c641760786034e4ba6d4bc3e9582748 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/LinkerSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a8dc0499496ba943bf74b2e9f1642bf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e094ce9d50ac6e48b4a558c21740b74 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e898f704a19250741a593f78ad986659 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce410272d5666e44812e63d103bfaa6 3 | folderAsset: yes 4 | timeCreated: 1553119366 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Examples/Prefabs/Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e397534993a3daa4fb62356a2b6e1856 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Examples/Prefabs/RoundedCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98bcf37801e348c44b1dc78b7af0bb77 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3fc97bf8101614b8930d5fe8aad541 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Examples/Textures/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanCommon/Examples/Textures/Plus.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66710c84ec8f26843ab0236b80499b22 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c95535bafe00e6246b55d926ae78e64b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/GUIDE.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee5243b4c3305f4393657b324b1a5c4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Required.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eca036dcb74c24e4687c45ba0c2d2983 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/Required/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 343b9ec9f5c2b3a43b6e4cd68f5286ca 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanCommon/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b161f7eaaf64aa40ba67688774eb06f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa389a3f9b662a541bcf774f99b89553 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e65142560c28d49a5fb6c79b9c1cb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/01 Finger Down.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6e339405953bb94eb24436b8bcf3a6e 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/02 Finger Up.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e75bcbf9fc009e7499be19cd0a6d834f 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/03 Finger Swipe.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36b63a4ae51f394abdf3edf4c81a515 3 | timeCreated: 1523843138 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/04 Rotation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c525e5b6627cf214993e6e54947d3194 3 | timeCreated: 1523843138 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/06 Direction 8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39fc81c139246c14cb65039a492df9df 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/07 Finger Tap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9288129b03a30fd4590f54bacfa4fc2b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/08 Spawn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935b453473865f3458f13d20bc896092 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/09 Block.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e08b589e5c339642a6ebfc31372ffab 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/10 Double.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba993e45bd8bc540a58ab0bf1a234f5 3 | timeCreated: 1480141504 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/11 Finger Old.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748227db34677044da44badff4bbdb65 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/12 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc6d67bd10127441a6feb2e68bfe9e8 3 | timeCreated: 1475330508 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/13 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4503f8040e549f489cd402bce299069 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/14 Selectable.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b6c4e824ab1a646a0178fbf08c24c4 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/15 Tap To Select.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0270b2d69ee57d34685f0d50ed0bdb12 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/18 Destroy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12f8ad357a87bf440bade5f78a603168 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/19 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c0bfed60f6dc4d458e7182fae66de94 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/21 Tap To Toggle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3bc245475ada847ab483d51b2d5d15 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/24 Isolate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7623668b6b9ad5b4aa2ae951866037e9 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Finger Trail.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8717ad9118782244ba638a66799dba09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/LeanTouch+.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 947eac2e6090e724b83bfffc7748bdb4 3 | timeCreated: 1532237988 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b0d3a95ea6a51645906704fb7a700af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Materials/Trail.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a249bfc9d8fe9874890b7170317078ab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dd92082f9368fe4482f83b22b7ba2e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowCurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowCurve.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowStraight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowStraight.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowTwist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/ArrowTwist.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/BigLogo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/BigLogo+.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Button.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Circle.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/FingerVisualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/FingerVisualization.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingDot.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingLine.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/GlowingTrail.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Logo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Logo+.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/Textures/Square.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Examples/TouchEvents.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ac725435c4f16446b182ce8844aac54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18b6d3ae24a9ee4da77b182b1609bbc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b01f0f2dd5938c345bf7eac5fc17530b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Required.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2b155d4e1643904ead98b8da538422d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/Required/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81e63ffd398d1c40b674a6ac07bbbd8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/LeanTouch/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f91f425854e5c9a4b99f0b1501bef8b8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/READ ME.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ff8a5c80a68bc458c5d91349bf10ed 3 | timeCreated: 1547977084 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ca2ae3c6a436934f958bf9fdf9e8b0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5b1e541db6f29e43bb84576fcfb32bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/CW.Common.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 637dfb2b87b2cf0499a8da5b0b91da54 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd74f0005021374780840b66d0eefc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 206ff270d3884e74193a896d61f583c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Fonts/VarelaRound-Regular.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08365a11a49ae6f41ade544399c3da84 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 685ab5efc56b77343985bfc78c17ab5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ece9783b3fc55b4f85e26ef1cea10c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf01d56b89089d42be94e77d527be91 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoDescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoDescription.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoLeft.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/DemoRight.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/CW/Shared/Common/Examples/Textures/Grid.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9d0d3468e28b7846a32128b6898ca6f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388552ada77be9a4ea13526b21d3a28d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Extras/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8792c9b2bbc82ff468406f0b60476aad 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Required.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f41b5d72be5b534b9d9f5394d24c50e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/CW/Shared/Common/Required/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb371642e8bcb141a02849e93f43a37 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42f2b02fe42f72846a4471e364542a28 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53d3006be522b224690e059ddc4f33e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34192c5e0d14aee43a0e86cc4823268a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f007001a22b3d24dae350342c4d19c8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b27f58ae5d5c33a4bb2d1f4f34bd036d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e2c6224d345d9249acfa6e8ef40bb2d 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f46310a8b0a8f04a92993c37c713243 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0034ebae0c2a9344e897db1160d71b6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 143604b8bad857d47a6f7cc7a533e2dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Modules/DOTween.Modules.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DOTween.Modules" 3 | } 4 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/Modules/DOTween.Modules.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbd5e43de71988444bda4957b95755fa 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Demigiant/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fccfc62abf2eb0a4db614853430894fd 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a6d45e97257474bb0dc2e77305e434 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74026f7916b08a343916493b0a1752cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dcb986197a7fca43a1547994c1e7ad8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd1e6a9192c40084998c62404bb41ba2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d019fe31826be4d40b791a523a76fa12 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Graphy - Ultimate Stats Monitor/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cddc533b908681b4eb4d94dc889d4db1 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Android/IngameDebugConsole.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Android/IngameDebugConsole.aar -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/IngameDebugConsole.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "IngameDebugConsole.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/IngameDebugConsole.Runtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3de88c88fbbb8f944b9210d496af9762 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf2ac73f7bc3064c96d53009106dc53 3 | timeCreated: 1563307881 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Scripts/Commands.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb9b6e1ab379cec46bfae8f8abcc1f45 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconClear.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconClear.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconCollapse.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconCollapse.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconError.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconError.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconHide.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconHide.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconInfo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconInfo.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconResizeAllDirections.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconResizeAllDirections.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconResizeVertialOnly.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconResizeVertialOnly.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottom.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottom.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottomBg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottomBg.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconWarning.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/IconWarning.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SearchIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SearchIcon.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground2.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/SlicedBackground3.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconErrorHighRes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconErrorHighRes.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconInfoHighRes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconInfoHighRes.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconWarningHighRes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/IngameDebugConsole/Sprites/Unused/IconWarningHighRes.psd -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/IngameDebugConsole/iOS/IngameDebugConsole.mm: -------------------------------------------------------------------------------- 1 | extern "C" void _DebugConsole_CopyText( const char* text ) 2 | { 3 | [UIPasteboard generalPasteboard].string = [NSString stringWithUTF8String:text]; 4 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e82eeaf016ff5b4cbb897cc57578c00 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Demo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aab4c0dd88d44cd4e817c3f1994407b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Demo/DemoScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65671216fb4e42d4f89ed6eeca36060d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Plugins/WebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a1a6aea65cc413faf8fb4421138b29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89cd0cf8603ef4069b2f6a5d79cbdbe1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb71bb4fb62590c4b975ef865b4df25f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53e0ed9fdc3af42eba12a5b1b9a5f873 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/UnityWebSocket/Scripts/Runtime/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3a2a8f55d4a47f599b1fa3ed612389 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 705da19d7f9be5c4abc0518f117405d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70ffae629cf5764fbc95aaeeb64884d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoMocking.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aeabfd115c8a4b0ea6377d7970134a2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/AutoSubstitute.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d9bd58f4dad04d4aa76be96981ea7d1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject.Tests.Bindings.FromSubContainerPrefab 2 | { 3 | public class Gorp 4 | { 5 | } 6 | } 7 | 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource 2 | { 3 | public class Gorp 4 | { 5 | } 6 | } 7 | 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503a300139444eda80c6549ec29b3b20 3 | timeCreated: 1587924687 -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 983f0bc44f6541bfab062ceec72231d3 3 | timeCreated: 1587867811 -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Asteroids.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fbbab4d6f8dcbd4eb46075a8f4a68e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5cb7331a4436e74d9a3528bd7b6132b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0958372920e5ce947b09867c51119580 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Fonts/Space.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3282156ad562e6449e0593138e10594 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48f6a1e1e8f9eef4a8767261db8c5e40 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a67e7502f6453ae48929b6da89c7a8e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Materials/CampFire_Smoke.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edd0d4a6265d34cbea0dc848ce7114af 3 | labels: 4 | - Particles 5 | NativeFormatImporter: 6 | userData: 7 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Materials/FireA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0babe53ca63bb49209164496ab5e4231 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Materials/Glow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209ea2f17ebe64e85a177a9bbad10476 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Materials/OilSmoke.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5315e2f77c540b6bf545720e84d3a5 3 | labels: 4 | - Particles 5 | NativeFormatImporter: 6 | userData: 7 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccd95c6f13e1b8141adfc0a77f660e19 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks/meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54ece40b2bc071747b609dbf0fe68db6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks/meshes/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9548b46e8c1bd7e48ad86c65eae66828 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks/meshes/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9ac87544b6e60b4f93bb932aec2fa1c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks/meshes/Materials/rock_01Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1f30c6b2183c3f4a9ffa3cb444d6ddc 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Rocks/textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fb1e67857c38f74cbe251871b9f34f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 974698baa23a34ddd97ac702be0de49d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Shaders/AddSmooth_Layer.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e10518acdaf774d528297b6d5b3a5839 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Shaders/Add_Layer.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36de5f3f364314127bce48eea23438c3 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Shaders/Particle Alpha Blend_IgnoreFog.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7072050308ffe4cc1a908ac897583e2e 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/SpaceShip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b635bf5d7ac4eea4bab863a562c416e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/SpaceShip/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f211c9ea30df4247accbca0280a94ec 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/SpaceShip/Materials/1K_Body-TXTR.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e138ce6cd06f74d83cf3884415be92 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/SpaceShip/Materials/Space_Shooter_Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a514b444dba54df418424449041a3aa6 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/SpaceShip/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6febdc7b43fbd0c49b13fec14b9be50b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Imported/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db4b9202f2958462296463fc55b34572 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03afdaf21f20e5543aafee9c467a61bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Materials/stars.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0f447361fb4285458bb4b25e0cbbff5 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Materials/target.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6337eec4e613a6c44b441bb6b4ffbfa0 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83f84a6a87a8a0d43ad8c6460dd38acc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Meshes/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f31de9209466a124a979ef5667e4ee75 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Meshes/Materials/Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62155033a16c4eb4ab0878b56d98970f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Meshes/Materials/shipdoor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f272d5e8ff508428baf80fadda022a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Physics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e117af07459d3f4893fe05646d854c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Physics/Default.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19e1775e0162387408a846a5e92cc2c2 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8355cf4b7ebe345a0430d15f20ae2e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a25b85fe55c948c41a1259e3dfc3cebf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Textures/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58881f003b1f1d54a9d4372b043f980c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Textures/Background/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93b8b198480ec8040b306406408200c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Textures/Background/Materials/Free_Shmup_Sprites_Starfield 1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f96f18654fcb0a742b51183dab201105 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Media/Textures/Background/Materials/Free_Shmup_Sprites_Starfield.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b384f014c562cb64093ed03a6e82817f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 538a7ee3bafeabc439759090caf2889c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs/Asteroid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 972561acbe31e7147b76d1a430caf37d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs/Explosion.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 185972cb8011a1449b7360c07a62fdf2 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs/Fire.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69fdd131bc1398b4b932a019fd9328f0 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs/Ship.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4cdd74364fb9d6448ecf7663dd0cfe9 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Prefabs/ShipBroken.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b84466ca2cdf93418bd1e3234edb0e1 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b800be3d93804944bb261ee1e63815c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be4d1f9900f1746418149a1b3ab2c2b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1b545d343661c54bbb60bc94fe13453 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 400be1c46a6fb414f856927bc0910da7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f289e0dd7cbe36b408dcfd072332f8b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb012d11f2128404dbc27a5b0ed3e26a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca259dfabfd45a54eba7128747f28149 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/GameEvents.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject.Asteroids 2 | { 3 | public class ShipCrashedSignal 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Media/Materials/Flame01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1ca011c5f92d4fd4b5aeac44fd607c6 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Media/Prefabs/Explosion.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93a60ba8e409947b1a0334537c8b38c8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/OptionalExtras/UnitTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7378a2249be3cab40bbebc680d8a6122 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/ReadMe.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/svermeulen/Extenject 3 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a96473817a0384580ace78f202a622 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02bed9738f9c4323ac05524465473dee 3 | timeCreated: 1494728675 -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject-Editor", 3 | "references": [ 4 | "Zenject" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ], 9 | "excludePlatforms": [] 10 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2750a8b0a1173074e9387536c12de4f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36c66e30e287cf48b9bb264d4924562 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13e9b26d23f6422cb282cc27631fc9e2 3 | timeCreated: 1494725784 -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f870edd43b85f4dae7b77cc0d75b46 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Providers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5ba0ff0ad7f874f8938a3266c21d4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorIkHandler 4 | { 5 | void OnAnimatorIk(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorMoveHandler 4 | { 5 | void OnAnimatorMove(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f054684b4d0f44a1904823270ae3f137 3 | timeCreated: 1587868417 -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Usage/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Usage/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78cde942f7000eb41900aa4d3c9249d7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f550a9d7385fce4e9bc4a0e5fa52daf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IValidatable 4 | { 5 | void Validate(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Source/Zenject.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8645273165cb7f54290d6eaa1e10ab37 3 | timeCreated: 1461878212 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/Version.txt: -------------------------------------------------------------------------------- 1 | 9.2.0 2 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/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 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5ee7f1788474bd44a48b0a201461151 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Plugins/Zenject/zenject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject" 3 | } 4 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209aa6c1ac4fb374cab00f79b0a951ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Resources/DOTweenSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d963d0c16adba2a43ba9eeb6bec2d7c2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Resources/MainDI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98efe84df576a694f90f040926959264 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8eedf322f4f0ac44588bd79126de0f66 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dad75ff73fdbbbc4ca91506939f182cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Scripts/Environmentaljson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ede4ea35975f29945847fbd63123296d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Scripts/Environmentaljson/ENVIRONMENT.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8236ce56d3727e34198485ceacf4c74b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 691d4b181737769439cf8ca9c0b6e696 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79d3ef653aa3d93438bccd871750a703 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ca069870a9bee4a8be94490ba1de12 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/Editor/App.Core.Addresables.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b70ba2d3f51a0b40a2cc897a54ecc8d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/Editor/PrePostProcessCallbacks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9d3456b32f98d7479374f99fa8f9ee5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/Editor/UniAddressablesMissingFileTest/README.md: -------------------------------------------------------------------------------- 1 | # UniAddressablesMissingFileTester -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/Editor/UniAddressablesMissingFileTest/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daff9ec3fecee094b841442a197df4c8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/RefToUniTaskAddressables.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "UniTask.Addressables" 3 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/RefToUniTaskAddressables.asmref.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3e37352cc7d784c97ed09a15afc73f 3 | AssemblyDefinitionReferenceImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Adresables/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7fb2247e054da94f80a34ddc2a9abf1 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af29be98d0e00e946908ff2bc6ffa988 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa65d9a36b3ade843bac689aee519365 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/App.Core.Attributes.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d54e71ee28a55d42b8ac92e6ba5b7e3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/AssetPathAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2dc1ad87c451534db23dfed25428f03 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/DrawIf.Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a3c0efa5d1b221448a1564790d52404 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/ExecutionOrder.Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b92b10f4610f23d4997874c038c3cf04 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/Password.Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d31aacb3a18dbb642b35517dfc2450e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/Password.Editor/PasswordDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be61b87dad0d4ac3a1ba8468500a6ae4 3 | timeCreated: 1604480284 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Editor/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaaf172d572ceb4498a771eab66e41cc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6636f2789de005944baec285be88ec39 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/App.Core.Attributes.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45fee95d65f39e3498a654e534dcc04a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/AssetPathAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1776ba219cdb4f42ac468c24c113d8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/ClassReference.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 663b8d60069a47d478a048c0c226d58b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/DrawIf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdd9e00fb6025204bbd9c58ed11e68c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/ExecutionOrderAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388e36c83e393d54d9b9cba2cc1774c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/PasswordAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9a619ab714df5748b32f19862296be0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Attributes/Runtime/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c9a0cd207c6c14bacc79dfbd3d0ddf 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 256022dc2344b694fb5c6dbd0c7dc007 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/App.Core.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40057cbba3f015a4ea99b17bd1547cc7 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/BuildTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a8d13df8156f0f4db8038b0d670ecd1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/BuildTools/BuildPreProcess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40429d65dbb74a88939f1c67a1de271b 3 | timeCreated: 1637693238 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/BuildTools/OpenTerminalCommands.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf7cc9dae2554f6d827930c01d95bbdb 3 | timeCreated: 1630944543 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/CI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7626ed370b16be141a92de90a591cb4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/CI/UnityUCBbuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ff6a1989d974f828268bd07e51cd331 3 | timeCreated: 1630767114 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14b0c9f308211e443bf89e2c08af7d1d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Editor/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e8adc5935593134b884f4823554b5be 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Editor/Plugins/FindReference2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf2a8c028fe5a76468415359f79df6e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Editor/Plugins/FindReference2/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50949d305b8c42d7ab69e6a19b56a6a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Editor/Plugins/FindReference2/FR2_Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Utils/Editor/Editor/Plugins/FindReference2/FR2_Readme.pdf -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/FindMissingScripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7351cdd8a6de2484d9e97f39654384b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/FindMissingScripts/FindMissingScripts.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b294b9e07185a404bbc1bb3736318f82 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e873b2d83ef29c4cafd7a3675a7b349 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Misc/AnimatorExtractor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb15543fa7df5ef4791eec50850603b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Misc/EditorHelpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0554d6aa588127343bc38ca7d728f9da 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/ReplacePrefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43e17746eb27e254cb859a9569e89c4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/ScriptableObjectStateMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a00ee19a883004f815c88ba5d395af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/ScriptableObjectStateMachine/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c59e1c20852d0c41a9c0dbb849993f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/SerializableCallback.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a63dd337a3a1d7d4b8a5dd7785ef5f4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/SerializableCallback/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bd9dcc74f3234d43a4c0b994cc5da20 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/Shell.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d2338e59cfdf946b5c6a9eab7c3c0b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996db7f2cd2a0c045a85c81474fa515b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Editor/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcef3b62b1663f54c8a4186089da1f89 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/NewUnityInputSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 314b0af943a969e4e8a6a8f0e22f1fba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/NewUnityInputSystem/App.Core.NewInputSystem.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57967b13c8cb25a4da3b99b70b703bdd 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c9b6c5187834ba4a90373813d67d33b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/App.Core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6b4d2bc2a4286b49bf91b362f31efea 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/BoundsExtension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d45c3c5d7c21a3429ef77c9bbced01c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/BoundsExtension/ExtendedBounds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cfb8c93a1100f045a38025e6112e44f 3 | timeCreated: 1616065759 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/BoundsExtension/IBoundsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a78e31284a269b4ca5ec2615bf491e6 3 | timeCreated: 1616065759 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/BoundsExtension/Providers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ff6fcbac30a24e42997b5a09f088441 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/BoundsExtension/Providers/BoundsProviderSimple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61d4bfe76c5345839877f70bcf1727a9 3 | timeCreated: 1616065759 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f1902df77a35934e88bd42491adfab5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/DisposableLambda.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dcc63e850b345c49cf7ab118fd13f62 3 | timeCreated: 1661354091 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/IResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e278879c38374a2ca634a3752896860b 3 | timeCreated: 1613067935 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/Observer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab5e9613ab0e9dd48a56dc424aeb39fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/Observer/IEventBus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f4740c69d8d491d9978db223e769f6e 3 | timeCreated: 1616571656 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/ServiceLocator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54d50ffe88ec0114ba11ad18c3340270 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/ServiceLocator/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.1 2 | Made ServiceFactory a static class instead of a singleton 3 | 4 | # 1.0.0 5 | Initial release as a package 6 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/ServiceLocator/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a29163e074e4146a4c9dd55d138173 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/ServiceLocator/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15bc1c00cff658342893758d8b0dc1b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/ServiceLocator/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49613c5a314e45b498e1ec09eddac8c2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/CommonPatterns/UnityCancelToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9274c8b7f0e1449da38220956d7efecb 3 | timeCreated: 1616138625 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Credentials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2ca0ba674b36b64d99a277251dcaeab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd1108204576c64bb43589ecf4c4e92 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/CancellationTokenSourceExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f447397ef5e4494a94bc162266812322 3 | timeCreated: 1636558414 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/ColorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08cd0b090c0242d8bc11ae09096298b9 3 | timeCreated: 1617956656 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/DateTimeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 123bd817306f4f5ab77fdc4655460a81 3 | timeCreated: 1631795465 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/EnumExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a192046e1374700804d774725cb8e5d 3 | timeCreated: 1617955157 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/EventTriggerExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a3318a821d34c22ad361e41cf67c4a0 3 | timeCreated: 1636019923 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/FileExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e07ffae1bc384aa58bec371e0fdb5423 3 | timeCreated: 1630768220 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/FloatExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a029bff67cf4d40a1d5789c60c5f7f1 3 | timeCreated: 1634111567 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dd3afe302bd4f2b99a1b03cc3c78e9d 3 | timeCreated: 1616323764 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/Headers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85db32bed7047748cb0172407b23a43 3 | timeCreated: 1631131394 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 608136015cf467e48b114dde89eedfc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bb179bed0f0487c8d012b8a7a056890 3 | timeCreated: 1626861174 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/CRUD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9de9ab9c48909fe46983307d072f2fad 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b29fe4021e430f74eb85adeef050bc95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Input/GlobalThemeEngineConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19e65e6116fd4acd9e4ce1bea709576e 3 | timeCreated: 1618474348 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Input/GlobalThemeEngineConfig/GlobalThemeEngineListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5308d1c528974113985911af262e8fc9 3 | timeCreated: 1618474375 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Input/Interactable/MRTK_InteractableSubscribe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50bbf8f31fe946e4a2a59bc3e58736fe 3 | timeCreated: 1616606324 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/PrimitiveClipList/IgnoreClippingPrimiteItem.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class IgnoreClippingPrimiteItem : MonoBehaviour 6 | { 7 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Rest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b74edd6ec95cc346a5ab7a5415365dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Rest/IRestCacheService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bd2022d0d584e48b64d15c75a081f1a 3 | timeCreated: 1631778931 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/Extensions/Rest/MRTKRestExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cb374f076764e1fa56b8eed2321b6c8 3 | timeCreated: 1624981086 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/MRTK/SoftServe.RefToMRTK.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Microsoft.MixedReality.Toolkit" 3 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/RectTransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f98e6f5d31942608767f8c3d70e8b78 3 | timeCreated: 1617954841 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/ScreenExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 202b9e61e2c04c7d8053b9fe0afb8612 3 | timeCreated: 1619773563 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb26c925554487aab5b4de538caf984 3 | timeCreated: 1623419016 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/Texture2DExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd035e9c463445efbc422e0d7e175698 3 | timeCreated: 1620999171 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/UniRx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05a2d87e2c4d42d79ba196b8df2f8d33 3 | timeCreated: 1633022415 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/UniRx/BufferedMessagebroker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eac746c19e9e41b58d6122a0ee7fc91e 3 | timeCreated: 1633022415 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/UnityEngineTestExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61192deac9ec4fc881d3add3a1b9e42c 3 | timeCreated: 1616152130 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Extensions/VectorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b9314bb6654d51b053cdcc28b1521e 3 | timeCreated: 1617954980 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/ScriptableObjectStateMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34cf1a2719cb12f4b8d7cd6f6905076c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/ScriptableObjectStateMachine/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b03eedfb39d8194a8cfa2822c275600 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/ScriptableObjectStateMachine/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a07c8736615bf144e9decac02a86c6c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b153e56e287080e45bfd366d185ba910 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Assets/Utils/Runtime/SerializableCallback/.gitignore -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e54ef84e66c67641829527ff9991f11 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d219fbb5858fbec4f98aed9b93e8b29b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 622b746b8af42df4ca04801f5f2e021a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/Runtime/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddaee893ddcab3e45b58f9893a051a0a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/Runtime/Core/InvokableEventBase.cs: -------------------------------------------------------------------------------- 1 | namespace App.Core.Tools.SerializableFunc.Hidden 2 | { 3 | public abstract class InvokableEventBase 4 | { 5 | public abstract void Invoke(params object[] args); 6 | } 7 | } -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/Runtime/PrimitiveType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e452e9f74c541a39927143c827ee189 3 | timeCreated: 1625650143 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/SerializableCallback/Runtime/PrimitiveType/SerializablePrimitiveTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e960cf1d4b64c2aa4f8ebde440bba44 3 | timeCreated: 1625650167 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Serializer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4410e1a4c6a95f04f9b33cd7504cd8e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f5c56e62faf31c4783647f08dc4b339 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa41bbecffac0d04bb178a3c35b838e0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract/ICacheMock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7b978a28604f039d19f0d36ae9b6ec 3 | timeCreated: 1632391711 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract/IDateTimeProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd30e92be98f4be29dfdc7b419fbdcb3 3 | timeCreated: 1631781405 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract/INetworkService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3c6fb587e644ebbaa83912d70bdd294 3 | timeCreated: 1631781304 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract/IService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfeca528c74a4b6e83c6757d5a663e7f 3 | timeCreated: 1616686323 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/Abstract/IUser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a581042f80d4c4eb9ba58cfc9efc353 3 | timeCreated: 1616668334 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/AuthMessageBus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4bee0e7daf45f0baec5536db07cb36 3 | timeCreated: 1625074350 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Services/AuthMessageBus/AuthEventBus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be02898378df4cd796c4d0f2cc228fac 3 | timeCreated: 1625074364 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fbda188bcda06b40a953ab3a4c86a12 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Timers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fe2780ba5f60b143bcab0b5ed76e46f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Timers/DateTimeTimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 881aae28abd74c4f857b85470aef7dee 3 | timeCreated: 1636026522 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1c8ca9eeeb740a8902e1086af80e001 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/CurrentDeviceSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61cc46345de63e64e9cb6ab4603aa4bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/EditorPlayerPrefs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00d32143d3b24073b8bd124f52118f65 3 | timeCreated: 1642500390 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/Filtering.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47ced5537f5f2b04ea9a19e49eb620ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/FixMissingMethods.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27dfe4257cc908b43a490ac4747f184c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/HelpfullMonobehaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d96a19d9d88225345b202623c2a6250b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/QuickAPI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50101b054b8ba974c985121b50b5ca18 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/QuickAPI/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7926cb4c980722946a5d991375f323a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/Tools/ReverseClip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfab8aaedeb609c43a461d824ba306f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c8695ae083ef7d4995d67d46378b470 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/UI/AnchorMaxPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4e17aff1c44f1faa4cc3593ca4d97b 3 | timeCreated: 1643806588 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/UI/Caret.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdfe801288f5f7a449c4fcc4f7731ab2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/UI/Caret/CustomCaret (1).prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3d5c0112b030f841b7da54f57617a75 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/UnityHelperComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0dbf366a6df7f848bff05c4b36f0656 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/Utils/Runtime/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80e2c77da45cee843994307384577b6a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/csc-strict.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649 2 | -warnaserror:0114,1522,0108,0162,0414,0219 -------------------------------------------------------------------------------- /0_unity_project/Assets/csc-strict.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dbd31013d28ad942998509bcda6ad91 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Assets/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649,0618,1701 2 | -warnaserror:0114,1522,0108 -------------------------------------------------------------------------------- /0_unity_project/Assets/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7da3a8ae92a59dc40acdf9b83a942d46 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Jenny.properties: -------------------------------------------------------------------------------- 1 | Jenny.SearchPaths = 2 | Jenny.Plugins = 3 | Jenny.PreProcessors = 4 | Jenny.DataProviders = 5 | Jenny.CodeGenerators = 6 | Jenny.PostProcessors = 7 | Jenny.Server.Port = 3333 8 | Jenny.Client.Host = localhost 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e06acaf9aa530419282e0df03f3cf3e6 3 | timeCreated: 1493502598 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194be10bd0c3d433092c6549958c7347 3 | timeCreated: 1493502577 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3440595ef85ff7b4db53b7d2a569fb90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/Runtime/BaseEncryptionKeyInitializer.cs: -------------------------------------------------------------------------------- 1 | namespace Sabresaurus.PlayerPrefsUtilities 2 | { 3 | public abstract class BaseEncryptionKeyInitializer 4 | { 5 | public abstract string GetCustomKey(); 6 | } 7 | } -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/Runtime/BaseEncryptionKeyInitializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 565b3f631e80445e977a9f8ec135b93b 3 | timeCreated: 1640092934 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/PlayerPrefsEditor-1.4.0/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 544dc29f220a2ad4d87ae9f8a971c2a7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pull Request 3 | about: Create a pull request 4 | title: '' 5 | assignees: mob-sakai 6 | 7 | --- 8 | 9 | **NOTE: Create a pull request to merge into `develop` branch** 10 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Editor/UpmBridge.deps.json* 3 | Editor/UpmBridge.pdb* 4 | UpmBridge~/.idea/ 5 | UpmBridge~/obj/ 6 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06608ad179f2043e5a26ec668de262d6 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/CODE_OF_CONDUCT.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34da4f6b1419546d8a999b28947f9f16 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/CONTRIBUTING.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77e9d37bb7cac47d080ecfe9084497c5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8da6fb2b4dd6e41cb982d498ebcc0659 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Commands.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35128d946404c41209648858a84e09bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Commands/fetch-packages.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 837b752cda9d743b7872a03303685118 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Commands/utils.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10bc320b12cbd4255b51ca9b0ec056fe 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Legacy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c4d8abae0fa402d91b7420afd9a32f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbad6326276ee4aad9c2df0665d241fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Resources/giticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/UpmGitExtension-2.0.1/Editor/Resources/giticon.png -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d62a8df4b1a6428a8f8a40fe77eee37 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09f782862c8e14f85802b6589e507711 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/UpmGitExtension-2.0.1/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0bf7fb91a9a24c6c8e4cd5a550914ea 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/AdbWinApi.dll -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/NOTICE.txt -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/adb.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/dmtracedump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/dmtracedump.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/etc1tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/etc1tool.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/fastboot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/fastboot.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/hprof-conv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/hprof-conv.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/libwinpthread-1.dll -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/make_f2fs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/make_f2fs.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/make_f2fs_casefold.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/make_f2fs_casefold.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/mke2fs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/mke2fs.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/source.properties: -------------------------------------------------------------------------------- 1 | Pkg.UserSrc=false 2 | Pkg.Revision=33.0.2 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/platform-tools_r33.0.2/sqlite3.exe -------------------------------------------------------------------------------- /0_unity_project/Packages/local/platform-tools_r33.0.2/unity_log_command.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -x 4 | 5 | ./adb.exe logcat -s Unity DEBUG -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5c6e86f0111ee54ba61eb8b5b0397ab 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20f8e986439f69b4292ef22ee1b6b734 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Unity.AutomatedQA.Tests.Editor")] -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/BuildPipeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fce5ae203f534e56bc44b599ed24240 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ce450343d2b524fad0d10dcc515c5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudTestBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16277d9b85bc4d598e29f73000d5dec6 3 | timeCreated: 1615254060 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudTestDeviceInputEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50330fbd0754725a8eb530b94be09d5 3 | timeCreated: 1628883120 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudTestPipeline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dc14804ad1f4437b2d410c0efa1afdc 3 | timeCreated: 1616003818 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudTestRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af0f0fa348b142c297b64896591d1e7c 3 | timeCreated: 1615254060 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44bb99936aa8448ba697d64a21840fe8 3 | timeCreated: 1622051388 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Cloud/CloudWindow/cloud-window.uxml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/CodeGeneration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5445a72f7f0c04a49a3e968b53b871d0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/CodeGeneration/code-generation.uxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Hub.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6c46f90e3e2e2f47802e0e79d7c28f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Hub/hub_icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c57bf4351c94144a9559dc857664542 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Inspector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1353f7f27c69c0a498c99db27ab5bfb0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/RecordedPlayback/EditorClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9e3547b5b1a46de99ac59ca2e6009b6 3 | timeCreated: 1615254060 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/RecordedPlayback/RecordingUploadWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36536b203e464f8290cec10fc7e05487 3 | timeCreated: 1615254059 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/RecordedPlayback/Windows/RecordedPlayback/recording-window.uxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/ScriptTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 242fe22d69df44c28a94f83af19ba462 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eb9b07ac80499f42b0dc96abfcf35b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Settings/settings-window.uxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/ToolsWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84a1a0af1efe45a4585f0f767f016ad4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/ToolsWindow/tools-window.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/Packages/local/unityautomatedqafork/Editor/ToolsWindow/tools-window.uss -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/ToolsWindow/tools-window.uxml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3765cdf5dc04add9bd6c48fdeabe610 3 | timeCreated: 1631573209 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Editor/Utils/EditorHttpClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ed6859b8bf34ce8a7fef82838f47417 3 | timeCreated: 1631151720 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf06ebd5a26a7ee46a6a7fc2d4260f5b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41fdd0353f6e32a4a93f2d8da7379d45 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eac5777f056c6341971535b121c3840 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Automators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f3ca4fa48081c9428d3ab205fda1a95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Cloud.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1a63b35cd657eb498b264303c4fc7f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Cloud/CloudTestManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b4af2cf60434c6aa9a7060ee7025aa1 3 | timeCreated: 1615410211 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Cloud/CloudTestingData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d29e95f8b1a4275abb900abc2c0b289 3 | timeCreated: 1615254009 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Inspector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1639485474bd5fe45b5dffce693b8f99 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/RecordedPlayback/RuntimeClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bb9b3938ea94236badc2c88c43ed484 3 | timeCreated: 1615254009 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Reporting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14c32e112f37cae46939dac1c2be0e65 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bad331aaf920457d9186418a278d47f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/TestTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33e2cb05cd34dac4d8460342699d6ccf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Unity.AutomatedQA.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d42b047b71d6064d9f7abbbec55dbb4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99753b33bca4419a83ef1ae9f0370af8 3 | timeCreated: 1631056135 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/Utils/HttpClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acdcd5e908e54a56ac66871e4e7f9027 3 | timeCreated: 1631056143 -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/VisualFx/Drag.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5903d70485ff1d4182aff9fcfcbe3e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Runtime/VisualFx/Drag/DragMark.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e90347eea258d054c8d255e1045f6447 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/SampleAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38b4c61cd1c495342b13296b482339f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31bc80f1b7faa1b4ba6fb34c4750aca3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e23b61e68f6e14750ae414532358e86b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tests/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8873ad053368fda4ca217d9fff124ebf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd4f8e6a694136541aadac0b017fac5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools/ServiceAccountManager/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06b6092fff9684fcbbd2d24037d7c5ab 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools/ServiceAccountManager/config.ini: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | username= 3 | password= 4 | project_id= 5 | token_expiration_seconds=2592000 6 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools/ServiceAccountManager/config.ini.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc5262b2ad2cb4fc0a2a8dda5e7dd062 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools/ServiceAccountManager/requirements.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | pyjwt[crypto] 3 | requests 4 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/Tools/ios-builder.sh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4468e7720dbe437aae28d02a716dbc6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/Packages/local/unityautomatedqafork/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95308abba6d0e704c92b59e2add43c63 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [] 4 | } 5 | } -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.2.18f1 2 | m_EditorVersionWithRevision: 2022.2.18f1 (5ebc6493a86f) 3 | -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /0_unity_project/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /0_unity_project/certificates/store_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studentutu/UnityTemplateArchitecture/07e000f754320bd1c4394559d94eb0baa67ecf7f/0_unity_project/certificates/store_here.txt --------------------------------------------------------------------------------