├── .gitignore ├── Assets ├── Entitas.meta ├── Entitas │ ├── Compile.cs │ ├── Compile.cs.meta │ ├── DesperateDevs.Logging.dll │ ├── DesperateDevs.Logging.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.Networking.dll │ │ ├── DesperateDevs.Networking.dll.meta │ │ ├── DesperateDevs.Serialization.dll │ │ ├── DesperateDevs.Serialization.dll.meta │ │ ├── DesperateDevs.Unity.Editor.dll │ │ ├── DesperateDevs.Unity.Editor.dll.meta │ │ ├── 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 │ │ │ ├── EntitasHeader.png │ │ │ ├── EntitasHeader.png.meta │ │ │ ├── EntitasSystemsErrorHierarchyIcon.png │ │ │ ├── EntitasSystemsErrorHierarchyIcon.png.meta │ │ │ ├── EntitasSystemsHierarchyIcon.png │ │ │ └── EntitasSystemsHierarchyIcon.png.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── DesperateDevs.meta │ │ │ ├── DesperateDevs │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll.meta │ │ │ ├── DesperateDevs.CodeGeneration.Unity.Plugins.dll │ │ │ └── DesperateDevs.CodeGeneration.Unity.Plugins.dll.meta │ │ │ ├── Entitas.meta │ │ │ └── Entitas │ │ │ ├── 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 │ ├── EntitasUpgradeGuide.md │ ├── EntitasUpgradeGuide.md.meta │ ├── LICENSE.txt │ ├── LICENSE.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── RELEASE_NOTES.md │ └── RELEASE_NOTES.md.meta ├── Plugins.meta ├── Plugins │ ├── Console.cs │ ├── Console.cs.meta │ ├── Editor.meta │ └── Editor │ │ ├── JetBrains.meta │ │ └── JetBrains │ │ ├── Unity3DRider.cs │ │ └── Unity3DRider.cs.meta ├── Scripts.meta ├── Scripts │ ├── GenScripts.meta │ ├── GenScripts │ │ ├── LeoComponentRegCreators.cs │ │ ├── LeoComponentRegCreators.cs.meta │ │ ├── LeoComponents.cs │ │ ├── LeoComponents.cs.meta │ │ ├── LeoEntities.cs │ │ ├── LeoEntities.cs.meta │ │ ├── LeoReactSystems.cs │ │ ├── LeoReactSystems.cs.meta │ │ ├── LeoRunSystems.cs │ │ ├── LeoRunSystems.cs.meta │ │ ├── LeoSysRunner.cs │ │ ├── LeoSysRunner.cs.meta │ │ ├── SchmidComponents.cs │ │ ├── SchmidComponents.cs.meta │ │ ├── SchmidEntities.cs │ │ ├── SchmidEntities.cs.meta │ │ ├── SchmidReactSystems.cs │ │ ├── SchmidReactSystems.cs.meta │ │ ├── SchmidRunSystems.cs │ │ ├── SchmidRunSystems.cs.meta │ │ ├── SchmidSysRunner.cs │ │ └── SchmidSysRunner.cs.meta │ ├── LeoTestRun.cs │ ├── LeoTestRun.cs.meta │ ├── SchmidTestRun.cs │ └── SchmidTestRun.cs.meta ├── Sources.meta ├── Sources │ ├── Generated.meta │ └── Generated │ │ ├── Contexts.cs │ │ ├── Contexts.cs.meta │ │ ├── Feature.cs │ │ ├── Feature.cs.meta │ │ ├── Game.meta │ │ ├── Game │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── GameEcsSchmidC0Component.cs │ │ │ ├── GameEcsSchmidC0Component.cs.meta │ │ │ ├── GameEcsSchmidC10Component.cs │ │ │ ├── GameEcsSchmidC10Component.cs.meta │ │ │ ├── GameEcsSchmidC11Component.cs │ │ │ ├── GameEcsSchmidC11Component.cs.meta │ │ │ ├── GameEcsSchmidC12Component.cs │ │ │ ├── GameEcsSchmidC12Component.cs.meta │ │ │ ├── GameEcsSchmidC13Component.cs │ │ │ ├── GameEcsSchmidC13Component.cs.meta │ │ │ ├── GameEcsSchmidC14Component.cs │ │ │ ├── GameEcsSchmidC14Component.cs.meta │ │ │ ├── GameEcsSchmidC15Component.cs │ │ │ ├── GameEcsSchmidC15Component.cs.meta │ │ │ ├── GameEcsSchmidC16Component.cs │ │ │ ├── GameEcsSchmidC16Component.cs.meta │ │ │ ├── GameEcsSchmidC17Component.cs │ │ │ ├── GameEcsSchmidC17Component.cs.meta │ │ │ ├── GameEcsSchmidC18Component.cs │ │ │ ├── GameEcsSchmidC18Component.cs.meta │ │ │ ├── GameEcsSchmidC19Component.cs │ │ │ ├── GameEcsSchmidC19Component.cs.meta │ │ │ ├── GameEcsSchmidC1Component.cs │ │ │ ├── GameEcsSchmidC1Component.cs.meta │ │ │ ├── GameEcsSchmidC20Component.cs │ │ │ ├── GameEcsSchmidC20Component.cs.meta │ │ │ ├── GameEcsSchmidC21Component.cs │ │ │ ├── GameEcsSchmidC21Component.cs.meta │ │ │ ├── GameEcsSchmidC22Component.cs │ │ │ ├── GameEcsSchmidC22Component.cs.meta │ │ │ ├── GameEcsSchmidC23Component.cs │ │ │ ├── GameEcsSchmidC23Component.cs.meta │ │ │ ├── GameEcsSchmidC24Component.cs │ │ │ ├── GameEcsSchmidC24Component.cs.meta │ │ │ ├── GameEcsSchmidC25Component.cs │ │ │ ├── GameEcsSchmidC25Component.cs.meta │ │ │ ├── GameEcsSchmidC26Component.cs │ │ │ ├── GameEcsSchmidC26Component.cs.meta │ │ │ ├── GameEcsSchmidC27Component.cs │ │ │ ├── GameEcsSchmidC27Component.cs.meta │ │ │ ├── GameEcsSchmidC28Component.cs │ │ │ ├── GameEcsSchmidC28Component.cs.meta │ │ │ ├── GameEcsSchmidC29Component.cs │ │ │ ├── GameEcsSchmidC29Component.cs.meta │ │ │ ├── GameEcsSchmidC2Component.cs │ │ │ ├── GameEcsSchmidC2Component.cs.meta │ │ │ ├── GameEcsSchmidC30Component.cs │ │ │ ├── GameEcsSchmidC30Component.cs.meta │ │ │ ├── GameEcsSchmidC31Component.cs │ │ │ ├── GameEcsSchmidC31Component.cs.meta │ │ │ ├── GameEcsSchmidC32Component.cs │ │ │ ├── GameEcsSchmidC32Component.cs.meta │ │ │ ├── GameEcsSchmidC33Component.cs │ │ │ ├── GameEcsSchmidC33Component.cs.meta │ │ │ ├── GameEcsSchmidC34Component.cs │ │ │ ├── GameEcsSchmidC34Component.cs.meta │ │ │ ├── GameEcsSchmidC35Component.cs │ │ │ ├── GameEcsSchmidC35Component.cs.meta │ │ │ ├── GameEcsSchmidC36Component.cs │ │ │ ├── GameEcsSchmidC36Component.cs.meta │ │ │ ├── GameEcsSchmidC37Component.cs │ │ │ ├── GameEcsSchmidC37Component.cs.meta │ │ │ ├── GameEcsSchmidC38Component.cs │ │ │ ├── GameEcsSchmidC38Component.cs.meta │ │ │ ├── GameEcsSchmidC39Component.cs │ │ │ ├── GameEcsSchmidC39Component.cs.meta │ │ │ ├── GameEcsSchmidC3Component.cs │ │ │ ├── GameEcsSchmidC3Component.cs.meta │ │ │ ├── GameEcsSchmidC40Component.cs │ │ │ ├── GameEcsSchmidC40Component.cs.meta │ │ │ ├── GameEcsSchmidC41Component.cs │ │ │ ├── GameEcsSchmidC41Component.cs.meta │ │ │ ├── GameEcsSchmidC42Component.cs │ │ │ ├── GameEcsSchmidC42Component.cs.meta │ │ │ ├── GameEcsSchmidC43Component.cs │ │ │ ├── GameEcsSchmidC43Component.cs.meta │ │ │ ├── GameEcsSchmidC44Component.cs │ │ │ ├── GameEcsSchmidC44Component.cs.meta │ │ │ ├── GameEcsSchmidC45Component.cs │ │ │ ├── GameEcsSchmidC45Component.cs.meta │ │ │ ├── GameEcsSchmidC46Component.cs │ │ │ ├── GameEcsSchmidC46Component.cs.meta │ │ │ ├── GameEcsSchmidC47Component.cs │ │ │ ├── GameEcsSchmidC47Component.cs.meta │ │ │ ├── GameEcsSchmidC48Component.cs │ │ │ ├── GameEcsSchmidC48Component.cs.meta │ │ │ ├── GameEcsSchmidC49Component.cs │ │ │ ├── GameEcsSchmidC49Component.cs.meta │ │ │ ├── GameEcsSchmidC4Component.cs │ │ │ ├── GameEcsSchmidC4Component.cs.meta │ │ │ ├── GameEcsSchmidC50Component.cs │ │ │ ├── GameEcsSchmidC50Component.cs.meta │ │ │ ├── GameEcsSchmidC51Component.cs │ │ │ ├── GameEcsSchmidC51Component.cs.meta │ │ │ ├── GameEcsSchmidC52Component.cs │ │ │ ├── GameEcsSchmidC52Component.cs.meta │ │ │ ├── GameEcsSchmidC53Component.cs │ │ │ ├── GameEcsSchmidC53Component.cs.meta │ │ │ ├── GameEcsSchmidC54Component.cs │ │ │ ├── GameEcsSchmidC54Component.cs.meta │ │ │ ├── GameEcsSchmidC55Component.cs │ │ │ ├── GameEcsSchmidC55Component.cs.meta │ │ │ ├── GameEcsSchmidC56Component.cs │ │ │ ├── GameEcsSchmidC56Component.cs.meta │ │ │ ├── GameEcsSchmidC57Component.cs │ │ │ ├── GameEcsSchmidC57Component.cs.meta │ │ │ ├── GameEcsSchmidC58Component.cs │ │ │ ├── GameEcsSchmidC58Component.cs.meta │ │ │ ├── GameEcsSchmidC59Component.cs │ │ │ ├── GameEcsSchmidC59Component.cs.meta │ │ │ ├── GameEcsSchmidC5Component.cs │ │ │ ├── GameEcsSchmidC5Component.cs.meta │ │ │ ├── GameEcsSchmidC60Component.cs │ │ │ ├── GameEcsSchmidC60Component.cs.meta │ │ │ ├── GameEcsSchmidC61Component.cs │ │ │ ├── GameEcsSchmidC61Component.cs.meta │ │ │ ├── GameEcsSchmidC62Component.cs │ │ │ ├── GameEcsSchmidC62Component.cs.meta │ │ │ ├── GameEcsSchmidC63Component.cs │ │ │ ├── GameEcsSchmidC63Component.cs.meta │ │ │ ├── GameEcsSchmidC64Component.cs │ │ │ ├── GameEcsSchmidC64Component.cs.meta │ │ │ ├── GameEcsSchmidC65Component.cs │ │ │ ├── GameEcsSchmidC65Component.cs.meta │ │ │ ├── GameEcsSchmidC66Component.cs │ │ │ ├── GameEcsSchmidC66Component.cs.meta │ │ │ ├── GameEcsSchmidC67Component.cs │ │ │ ├── GameEcsSchmidC67Component.cs.meta │ │ │ ├── GameEcsSchmidC68Component.cs │ │ │ ├── GameEcsSchmidC68Component.cs.meta │ │ │ ├── GameEcsSchmidC69Component.cs │ │ │ ├── GameEcsSchmidC69Component.cs.meta │ │ │ ├── GameEcsSchmidC6Component.cs │ │ │ ├── GameEcsSchmidC6Component.cs.meta │ │ │ ├── GameEcsSchmidC70Component.cs │ │ │ ├── GameEcsSchmidC70Component.cs.meta │ │ │ ├── GameEcsSchmidC71Component.cs │ │ │ ├── GameEcsSchmidC71Component.cs.meta │ │ │ ├── GameEcsSchmidC72Component.cs │ │ │ ├── GameEcsSchmidC72Component.cs.meta │ │ │ ├── GameEcsSchmidC73Component.cs │ │ │ ├── GameEcsSchmidC73Component.cs.meta │ │ │ ├── GameEcsSchmidC74Component.cs │ │ │ ├── GameEcsSchmidC74Component.cs.meta │ │ │ ├── GameEcsSchmidC75Component.cs │ │ │ ├── GameEcsSchmidC75Component.cs.meta │ │ │ ├── GameEcsSchmidC76Component.cs │ │ │ ├── GameEcsSchmidC76Component.cs.meta │ │ │ ├── GameEcsSchmidC77Component.cs │ │ │ ├── GameEcsSchmidC77Component.cs.meta │ │ │ ├── GameEcsSchmidC78Component.cs │ │ │ ├── GameEcsSchmidC78Component.cs.meta │ │ │ ├── GameEcsSchmidC79Component.cs │ │ │ ├── GameEcsSchmidC79Component.cs.meta │ │ │ ├── GameEcsSchmidC7Component.cs │ │ │ ├── GameEcsSchmidC7Component.cs.meta │ │ │ ├── GameEcsSchmidC80Component.cs │ │ │ ├── GameEcsSchmidC80Component.cs.meta │ │ │ ├── GameEcsSchmidC81Component.cs │ │ │ ├── GameEcsSchmidC81Component.cs.meta │ │ │ ├── GameEcsSchmidC82Component.cs │ │ │ ├── GameEcsSchmidC82Component.cs.meta │ │ │ ├── GameEcsSchmidC83Component.cs │ │ │ ├── GameEcsSchmidC83Component.cs.meta │ │ │ ├── GameEcsSchmidC84Component.cs │ │ │ ├── GameEcsSchmidC84Component.cs.meta │ │ │ ├── GameEcsSchmidC85Component.cs │ │ │ ├── GameEcsSchmidC85Component.cs.meta │ │ │ ├── GameEcsSchmidC86Component.cs │ │ │ ├── GameEcsSchmidC86Component.cs.meta │ │ │ ├── GameEcsSchmidC87Component.cs │ │ │ ├── GameEcsSchmidC87Component.cs.meta │ │ │ ├── GameEcsSchmidC88Component.cs │ │ │ ├── GameEcsSchmidC88Component.cs.meta │ │ │ ├── GameEcsSchmidC89Component.cs │ │ │ ├── GameEcsSchmidC89Component.cs.meta │ │ │ ├── GameEcsSchmidC8Component.cs │ │ │ ├── GameEcsSchmidC8Component.cs.meta │ │ │ ├── GameEcsSchmidC90Component.cs │ │ │ ├── GameEcsSchmidC90Component.cs.meta │ │ │ ├── GameEcsSchmidC91Component.cs │ │ │ ├── GameEcsSchmidC91Component.cs.meta │ │ │ ├── GameEcsSchmidC92Component.cs │ │ │ ├── GameEcsSchmidC92Component.cs.meta │ │ │ ├── GameEcsSchmidC93Component.cs │ │ │ ├── GameEcsSchmidC93Component.cs.meta │ │ │ ├── GameEcsSchmidC94Component.cs │ │ │ ├── GameEcsSchmidC94Component.cs.meta │ │ │ ├── GameEcsSchmidC95Component.cs │ │ │ ├── GameEcsSchmidC95Component.cs.meta │ │ │ ├── GameEcsSchmidC96Component.cs │ │ │ ├── GameEcsSchmidC96Component.cs.meta │ │ │ ├── GameEcsSchmidC97Component.cs │ │ │ ├── GameEcsSchmidC97Component.cs.meta │ │ │ ├── GameEcsSchmidC98Component.cs │ │ │ ├── GameEcsSchmidC98Component.cs.meta │ │ │ ├── GameEcsSchmidC99Component.cs │ │ │ ├── GameEcsSchmidC99Component.cs.meta │ │ │ ├── GameEcsSchmidC9Component.cs │ │ │ └── GameEcsSchmidC9Component.cs.meta │ │ ├── GameAttribute.cs │ │ ├── GameAttribute.cs.meta │ │ ├── GameComponentsLookup.cs │ │ ├── GameComponentsLookup.cs.meta │ │ ├── GameContext.cs │ │ ├── GameContext.cs.meta │ │ ├── GameEntity.cs │ │ ├── GameEntity.cs.meta │ │ ├── GameMatcher.cs │ │ └── GameMatcher.cs.meta │ │ ├── Input.meta │ │ └── Input │ │ ├── InputAttribute.cs │ │ ├── InputAttribute.cs.meta │ │ ├── InputComponentsLookup.cs │ │ ├── InputComponentsLookup.cs.meta │ │ ├── InputContext.cs │ │ ├── InputContext.cs.meta │ │ ├── InputEntity.cs │ │ ├── InputEntity.cs.meta │ │ ├── InputMatcher.cs │ │ └── InputMatcher.cs.meta ├── SpeedTest.unity ├── SpeedTest.unity.meta ├── ecs-leo.meta └── ecs-leo │ ├── .gitignore │ ├── Core │ ├── EcsSystem.cs │ └── EcsWorld.cs │ ├── LICENSE │ ├── LeopotamGroup.Ecs.asmdef │ ├── README.md │ └── Utils │ ├── EcsAttributes.cs │ ├── EcsComponentMask.cs │ ├── EcsComponentPool.cs │ ├── EcsEntityHashSet.cs │ ├── EcsFilter.cs │ ├── EcsHelpers.cs │ ├── EcsInjections.cs │ ├── EcsReactions.cs │ ├── EcsSystems.cs │ └── EcsWorldStats.cs ├── LICENSE ├── Preferences.properties ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md ├── TestsGen.py ├── UnityPackageManager └── manifest.json ├── necro.userproperties └── output ├── LeoComponentRegCreators.cs ├── LeoComponents.cs ├── LeoEntities.cs ├── LeoReactSystems.cs ├── LeoRunSystems.cs ├── LeoSysRunner.cs ├── SchmidComponents.cs ├── SchmidEntities.cs ├── SchmidReactSystems.cs ├── SchmidRunSystems.cs └── SchmidSysRunner.cs /.gitignore: -------------------------------------------------------------------------------- 1 | # =============== # 2 | # Unity generated # 3 | # =============== # 4 | /Temp/ 5 | Obj/ 6 | UnityGenerated/ 7 | /Library/ 8 | 9 | 10 | # ===================================== # 11 | # Visual Studio / MonoDevelop generated # 12 | # ===================================== # 13 | ExportedObj/ 14 | *.svd 15 | *.userprefs 16 | *.csproj 17 | *.pidb 18 | *.suo 19 | *.sln 20 | *.user 21 | *.unityproj 22 | *.booproj 23 | 24 | # ============ # 25 | # OS generated # 26 | # ============ # 27 | .DS_Store 28 | .DS_Store? 29 | ._* 30 | .Spotlight-V100 31 | .Trashes 32 | Icon? 33 | ehthumbs.db 34 | Thumbs.db 35 | .idea 36 | .idea/ 37 | .vs 38 | .vs/ 39 | 40 | # ============ # 41 | # Xcode # 42 | # ============ # 43 | /Xcode/ 44 | 45 | # ============ # 46 | # Builds# 47 | # ============ # 48 | /Builds/ 49 | /builds/ 50 | /build/ 51 | /Build/ 52 | *.apk 53 | /Export/ 54 | bin/ *.unitypackage -------------------------------------------------------------------------------- /Assets/Entitas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a2f668f3efc1fc4181397d8361993e4 3 | folderAsset: yes 4 | timeCreated: 1518462000 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Compile.cs: -------------------------------------------------------------------------------- 1 | namespace DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor { 2 | 3 | class Compile { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Assets/Entitas/Compile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ef8db2b4026b3499ae9484d9529375 3 | timeCreated: 1518462027 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Entitas/DesperateDevs.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/DesperateDevs.Logging.dll -------------------------------------------------------------------------------- /Assets/Entitas/DesperateDevs.Logging.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94380c2ba29e87146a6cadaacfadfa26 3 | timeCreated: 1518462018 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/DesperateDevs.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/DesperateDevs.Utils.dll -------------------------------------------------------------------------------- /Assets/Entitas/DesperateDevs.Utils.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9d45736c0be224986f557c06621647 3 | timeCreated: 1518462021 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 413d02cc14917c1428f802bb33257036 3 | folderAsset: yes 4 | timeCreated: 1518462000 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Analytics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.Analytics.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Analytics.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2837662441092a48b68b4c08f7ac94f 3 | timeCreated: 1518462019 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d932d8cee459748a0a7d8fdbe9b036 3 | timeCreated: 1518462025 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.CodeGenerator.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eab273db9940e141b3c52aa73ad8685 3 | timeCreated: 1518462011 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.CodeGeneration.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.CodeGeneration.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 458c1594bce07354fb2debe7a9cb9e1a 3 | timeCreated: 1518462010 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.Networking.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Networking.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad0ea9348f66c124fb7445a8253757db 3 | timeCreated: 1518462018 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.Serialization.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Serialization.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d3d2a4fe6d6ee144b497910d9813aae 3 | timeCreated: 1518462006 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/DesperateDevs.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/DesperateDevs.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 300cbc3b2ea00ab43ad9308213003f46 3 | timeCreated: 1518462009 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 095d2cc2c1adc4f46ad65a0e5b88e3b7 3 | timeCreated: 1518462004 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Entitas.Migration.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f3b803b90940e1439fa10b8547713f4 3 | timeCreated: 1518462007 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Entitas.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90afd5bdb3ed8924ea14a0b23546de79 3 | timeCreated: 1518462017 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d8c4e69389ef646a41fc181ef7fa3a 3 | timeCreated: 1518462015 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28682d9af45a446498f202274b44a11b 3 | folderAsset: yes 4 | timeCreated: 1518462001 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06bc0e5b0b5124fca8f5d7dde1d012b0 3 | labels: 4 | - EntitasEntityErrorHierarchyIcon 5 | timeCreated: 1461325930 6 | licenseType: Pro 7 | TextureImporter: 8 | fileIDToRecycleName: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 0 13 | sRGBTexture: 0 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 256 31 | textureSettings: 32 | filterMode: 0 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | compressionQuality: 50 39 | spriteMode: 0 40 | spriteExtrude: 1 41 | spriteMeshType: 1 42 | alignment: 0 43 | spritePivot: {x: 0.5, y: 0.5} 44 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 45 | spritePixelsToUnits: 100 46 | alphaUsage: 1 47 | alphaIsTransparency: 1 48 | spriteTessellationDetail: -1 49 | textureType: 0 50 | textureShape: 1 51 | maxTextureSizeSet: 0 52 | compressionQualitySet: 0 53 | textureFormatSet: 0 54 | platformSettings: 55 | - buildTarget: DefaultTexturePlatform 56 | maxTextureSize: 256 57 | textureFormat: -1 58 | textureCompression: 0 59 | compressionQuality: 50 60 | crunchedCompression: 0 61 | allowsAlphaSplitting: 0 62 | overridden: 0 63 | - buildTarget: Standalone 64 | maxTextureSize: 256 65 | textureFormat: -1 66 | textureCompression: 0 67 | compressionQuality: 50 68 | crunchedCompression: 0 69 | allowsAlphaSplitting: 0 70 | overridden: 0 71 | spriteSheet: 72 | serializedVersion: 2 73 | sprites: [] 74 | outline: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b806265ee874b86aa2d28aba93ace2 3 | labels: 4 | - EntitasEntityHierarchyIcon 5 | timeCreated: 1457898659 6 | licenseType: Pro 7 | TextureImporter: 8 | fileIDToRecycleName: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 0 13 | sRGBTexture: 0 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 256 31 | textureSettings: 32 | filterMode: 0 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | compressionQuality: 50 39 | spriteMode: 0 40 | spriteExtrude: 1 41 | spriteMeshType: 1 42 | alignment: 0 43 | spritePivot: {x: 0.5, y: 0.5} 44 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 45 | spritePixelsToUnits: 100 46 | alphaUsage: 1 47 | alphaIsTransparency: 1 48 | spriteTessellationDetail: -1 49 | textureType: 0 50 | textureShape: 1 51 | maxTextureSizeSet: 0 52 | compressionQualitySet: 0 53 | textureFormatSet: 0 54 | platformSettings: 55 | - buildTarget: DefaultTexturePlatform 56 | maxTextureSize: 256 57 | textureFormat: -1 58 | textureCompression: 0 59 | compressionQuality: 50 60 | crunchedCompression: 0 61 | allowsAlphaSplitting: 0 62 | overridden: 0 63 | - buildTarget: Standalone 64 | maxTextureSize: 256 65 | textureFormat: -1 66 | textureCompression: 0 67 | compressionQuality: 50 68 | crunchedCompression: 0 69 | allowsAlphaSplitting: 0 70 | overridden: 0 71 | spriteSheet: 72 | serializedVersion: 2 73 | sprites: [] 74 | outline: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasHeader.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasHeader.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65fb57b88da1f40c59682763366ab260 3 | labels: 4 | - EntitasHeader 5 | timeCreated: 1488042330 6 | licenseType: Pro 7 | TextureImporter: 8 | fileIDToRecycleName: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 0 13 | sRGBTexture: 0 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: 2 33 | aniso: 1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | compressionQuality: 50 39 | spriteMode: 0 40 | spriteExtrude: 1 41 | spriteMeshType: 1 42 | alignment: 0 43 | spritePivot: {x: 0.5, y: 0.5} 44 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 45 | spritePixelsToUnits: 100 46 | alphaUsage: 1 47 | alphaIsTransparency: 0 48 | spriteTessellationDetail: -1 49 | textureType: 0 50 | textureShape: 1 51 | maxTextureSizeSet: 0 52 | compressionQualitySet: 0 53 | textureFormatSet: 0 54 | platformSettings: 55 | - buildTarget: DefaultTexturePlatform 56 | maxTextureSize: 2048 57 | textureFormat: -1 58 | textureCompression: 0 59 | compressionQuality: 50 60 | crunchedCompression: 0 61 | allowsAlphaSplitting: 0 62 | overridden: 0 63 | - buildTarget: Standalone 64 | maxTextureSize: 2048 65 | textureFormat: -1 66 | textureCompression: 0 67 | compressionQuality: 50 68 | crunchedCompression: 0 69 | allowsAlphaSplitting: 0 70 | overridden: 0 71 | spriteSheet: 72 | serializedVersion: 2 73 | sprites: [] 74 | outline: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fecc08fe51ec4ba990bfd58e4ed14b5 3 | labels: 4 | - EntitasSystemsErrorHierarchyIcon 5 | timeCreated: 1489846920 6 | licenseType: Pro 7 | TextureImporter: 8 | fileIDToRecycleName: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 0 13 | sRGBTexture: 0 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: 1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: 0 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | compressionQuality: 50 39 | spriteMode: 0 40 | spriteExtrude: 1 41 | spriteMeshType: 1 42 | alignment: 0 43 | spritePivot: {x: 0.5, y: 0.5} 44 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 45 | spritePixelsToUnits: 100 46 | alphaUsage: 1 47 | alphaIsTransparency: 1 48 | spriteTessellationDetail: -1 49 | textureType: 0 50 | textureShape: 1 51 | maxTextureSizeSet: 0 52 | compressionQualitySet: 0 53 | textureFormatSet: 0 54 | platformSettings: 55 | - buildTarget: DefaultTexturePlatform 56 | maxTextureSize: 256 57 | textureFormat: -1 58 | textureCompression: 0 59 | compressionQuality: 50 60 | crunchedCompression: 0 61 | allowsAlphaSplitting: 0 62 | overridden: 0 63 | - buildTarget: Standalone 64 | maxTextureSize: 256 65 | textureFormat: -1 66 | textureCompression: 0 67 | compressionQuality: 50 68 | crunchedCompression: 0 69 | allowsAlphaSplitting: 0 70 | overridden: 0 71 | spriteSheet: 72 | serializedVersion: 2 73 | sprites: [] 74 | outline: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ee737a83aa9b4b56b2058b2b651ff0a 3 | labels: 4 | - EntitasSystemsHierarchyIcon 5 | timeCreated: 1489847588 6 | licenseType: Pro 7 | TextureImporter: 8 | fileIDToRecycleName: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 0 13 | sRGBTexture: 0 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 256 31 | textureSettings: 32 | filterMode: 0 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | compressionQuality: 50 39 | spriteMode: 0 40 | spriteExtrude: 1 41 | spriteMeshType: 1 42 | alignment: 0 43 | spritePivot: {x: 0.5, y: 0.5} 44 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 45 | spritePixelsToUnits: 100 46 | alphaUsage: 1 47 | alphaIsTransparency: 1 48 | spriteTessellationDetail: -1 49 | textureType: 0 50 | textureShape: 1 51 | maxTextureSizeSet: 0 52 | compressionQualitySet: 0 53 | textureFormatSet: 0 54 | platformSettings: 55 | - buildTarget: DefaultTexturePlatform 56 | maxTextureSize: 256 57 | textureFormat: -1 58 | textureCompression: 0 59 | compressionQuality: 50 60 | crunchedCompression: 0 61 | allowsAlphaSplitting: 0 62 | overridden: 0 63 | - buildTarget: Standalone 64 | maxTextureSize: 256 65 | textureFormat: -1 66 | textureCompression: 0 67 | compressionQuality: 50 68 | crunchedCompression: 0 69 | allowsAlphaSplitting: 0 70 | overridden: 0 71 | spriteSheet: 72 | serializedVersion: 2 73 | sprites: [] 74 | outline: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5effb5f7d6ce10d4db791bd04fad8fc5 3 | folderAsset: yes 4 | timeCreated: 1518462001 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/DesperateDevs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30fc3dc4354aa5c4a88b4189eeea8ca2 3 | folderAsset: yes 4 | timeCreated: 1518462001 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Plugins.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b9276bd8ffb7a4f8be740d08894a95 3 | timeCreated: 1518462015 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Unity.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Unity.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/DesperateDevs/DesperateDevs.CodeGeneration.Unity.Plugins.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc28f699420fd0148b63a1994b09d729 3 | timeCreated: 1518462022 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/Entitas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f120a0ceb8abfc34e97363fc6e69faa5 3 | folderAsset: yes 4 | timeCreated: 1518462001 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/Entitas/Entitas.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Plugins/Entitas/Entitas.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/Entitas/Entitas.CodeGeneration.Plugins.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 437d918045db7ca4a893a82731dc472d 3 | timeCreated: 1518462010 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/Entitas/Entitas.VisualDebugging.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Editor/Plugins/Entitas/Entitas.VisualDebugging.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Plugins/Entitas/Entitas.VisualDebugging.CodeGeneration.Plugins.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df388212a2742ae4282fa99907ccf43e 3 | timeCreated: 1518462023 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 1 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.CodeGeneration.Attributes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Entitas.CodeGeneration.Attributes.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.CodeGeneration.Attributes.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62a2440968d75664aada6ccaa749bb74 3 | timeCreated: 1518462012 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Entitas.Unity.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Unity.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4a109284604c9b4fb43fc8ea8f241af 3 | timeCreated: 1518462020 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.VisualDebugging.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Entitas.VisualDebugging.Unity.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.VisualDebugging.Unity.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 185e584c9d8171044af12afcf76f0073 3 | timeCreated: 1518462006 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/Assets/Entitas/Entitas.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d70695b91adf129419e8b84944484b4f 3 | timeCreated: 1518462021 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /Assets/Entitas/EntitasUpgradeGuide.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85830605cb669154b88b3ae33ca823b7 3 | timeCreated: 1518462035 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Entitas/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2014 - 2016 Simon Schmid 4 | 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /Assets/Entitas/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba4082e1adab89e4e96f49b3407e3fe1 3 | timeCreated: 1518462035 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Entitas/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bfb92f2398861f4a9f9edc9fa31e45b 3 | timeCreated: 1518462034 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Entitas/RELEASE_NOTES.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe1f76e543fc0749975ebf1c208ec0d 3 | timeCreated: 1518462035 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 124c795e1c9c014479efb49d863e764d 3 | folderAsset: yes 4 | timeCreated: 1518462592 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Console.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcf9da22959938e4a94e237055fffb64 3 | timeCreated: 1518562281 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c0a6978be4f40643bfa6f9a6411749a 3 | folderAsset: yes 4 | timeCreated: 1518462593 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Editor/JetBrains.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aff36d622d0df90469f785d77a3fcb23 3 | folderAsset: yes 4 | timeCreated: 1518462593 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Editor/JetBrains/Unity3DRider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9cd319ed5db094da849ebf7a8d46c0 3 | timeCreated: 1518462594 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d58b075919db1d241a8b5f85baa177c3 3 | folderAsset: yes 4 | timeCreated: 1518462640 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67dd2bebde12bbb44baac80ae2226f0c 3 | folderAsset: yes 4 | timeCreated: 1518559531 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoComponentRegCreators.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32595e469d4943442936e92960beb4fb 3 | timeCreated: 1519043990 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoComponents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24fe61f45d8a7f642ba7445fd3d6ba9d 3 | timeCreated: 1518463237 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoEntities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ace3cf7cd688ae444a405249d62aa3ef 3 | timeCreated: 1518558425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoReactSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8641471c0e5834647ab9f0f2c84f4232 3 | timeCreated: 1518636002 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoRunSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ced45645d27d774c92015fc437bcb93 3 | timeCreated: 1518468883 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/LeoSysRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e94d909c91d039c49958dbf393d08249 3 | timeCreated: 1518636002 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/SchmidComponents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad07457fb0c00fd448833e52a1a06d44 3 | timeCreated: 1518650414 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/SchmidEntities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3e6df7458898d74cad4cbce2ae95df3 3 | timeCreated: 1518650466 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/SchmidReactSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f7b34092979d10418961ff2a60a66c3 3 | timeCreated: 1518650465 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/SchmidRunSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c3b52abb6789ec45bf1bea92943f1d1 3 | timeCreated: 1518650465 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/GenScripts/SchmidSysRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5faca026ebf6bcf499f1b3825ea14130 3 | timeCreated: 1518650465 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/LeoTestRun.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using EcsLeo; 4 | using LeopotamGroup.Ecs; 5 | using UnityEngine; 6 | 7 | public class LeoTestRun : MonoBehaviour 8 | { 9 | private EcsWorld _world; 10 | EcsSystems _systems; 11 | 12 | public int Iterations=1000; 13 | public bool RunInUpdate; 14 | 15 | void OnGUI() 16 | { 17 | var size = 100; 18 | var offset = 100; 19 | var buttonnum = 0; 20 | 21 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Init Leo\n All Sys")) 22 | { 23 | var t0 = Time.realtimeSinceStartup; 24 | _world = new EcsWorld(); 25 | _systems = LeoSystemsCreator.CreateAllSystems(_world); 26 | _systems.Initialize(); 27 | Debug.Log("Init Leo All Sys " + (Time.realtimeSinceStartup - t0)); 28 | } 29 | buttonnum++; 30 | 31 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Init Leo\n Only Run Sys")) 32 | { 33 | var t0 = Time.realtimeSinceStartup; 34 | _world = new EcsWorld(); 35 | _systems = LeoSystemsCreator.CreateOnlyRunSystems(_world); 36 | _systems.Initialize(); 37 | Debug.Log("Init Leo Only Run Sys " + (Time.realtimeSinceStartup - t0)); 38 | } 39 | buttonnum++; 40 | 41 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Add entitys")) 42 | { 43 | var t0 = Time.realtimeSinceStartup; 44 | LeoEntitiesCreator.CreateEntitys(_world); 45 | Debug.Log("Add Leo entitys " + (Time.realtimeSinceStartup - t0)); 46 | } 47 | buttonnum++; 48 | 49 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Run 1")) 50 | { 51 | var t0 = Time.realtimeSinceStartup; 52 | _systems.Run(); 53 | Debug.Log("Run Leo Single Run time " + (Time.realtimeSinceStartup - t0)); 54 | } 55 | buttonnum++; 56 | 57 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Run " + Iterations)) 58 | { 59 | var t0 = Time.realtimeSinceStartup; 60 | for (int i = 0; i < Iterations; i++) 61 | { 62 | _systems.Run(); 63 | } 64 | Debug.Log("Run Leo Iterations_"+Iterations+" time " + (Time.realtimeSinceStartup - t0)); 65 | } 66 | buttonnum++; 67 | 68 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Register Components\n Creation")) 69 | { 70 | var t0 = Time.realtimeSinceStartup; 71 | LeoComponentRegCreators.RegisterComponentCreators(); 72 | Debug.Log("Register Components Creators time " + (Time.realtimeSinceStartup - t0)); 73 | } 74 | buttonnum++; 75 | } 76 | 77 | void Update() 78 | { 79 | if (!RunInUpdate) return; 80 | _systems.Run(); 81 | } 82 | } -------------------------------------------------------------------------------- /Assets/Scripts/LeoTestRun.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b10a1c74eec5cc45b03acf6ea2de88e 3 | timeCreated: 1518469914 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/SchmidTestRun.cs: -------------------------------------------------------------------------------- 1 | #if EcsShmid 2 | using EcsSchmid; 3 | #endif 4 | using Entitas; 5 | using UnityEngine; 6 | 7 | public class SchmidTestRun : MonoBehaviour 8 | { 9 | #if EcsShmid 10 | Systems _systems; 11 | 12 | public int Iterations=1000; 13 | public bool RunInUpdate; 14 | 15 | 16 | void OnGUI() 17 | { 18 | var size = 100; 19 | var buttonnum = 0; 20 | var offset = 0; 21 | 22 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Init Shmid\n All Sys")) 23 | { 24 | var t0 = Time.realtimeSinceStartup; 25 | _systems = SchmidSystemCreator.CreateAllSystems(); 26 | _systems.Initialize(); 27 | Debug.Log("Init Schmid All Sys " + (Time.realtimeSinceStartup - t0)); 28 | } 29 | buttonnum++; 30 | 31 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Init Shmid\n Only Run Sys")) 32 | { 33 | var t0 = Time.realtimeSinceStartup; 34 | _systems = SchmidSystemCreator.CreateOnlyRunSystems(); 35 | _systems.Initialize(); 36 | Debug.Log("Init Schmid Only Run Sys " + (Time.realtimeSinceStartup - t0)); 37 | } 38 | buttonnum++; 39 | 40 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Add entitys")) 41 | { 42 | var t0 = Time.realtimeSinceStartup; 43 | SchmidEntitiesCreator.CreateEntitys(Contexts.sharedInstance.game); 44 | Debug.Log("Add Schmid entitys " + (Time.realtimeSinceStartup - t0)); 45 | } 46 | buttonnum++; 47 | 48 | // for test creation cashes time 49 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Run 1")) 50 | { 51 | var t0 = Time.realtimeSinceStartup; 52 | _systems.Execute(); 53 | Debug.Log("Run Schmid Single Run time " + (Time.realtimeSinceStartup - t0)); 54 | } 55 | buttonnum++; 56 | 57 | if (GUI.Button(new Rect(offset, buttonnum*size, size, size), "Run " + Iterations)) 58 | { 59 | var t0 = Time.realtimeSinceStartup; 60 | for (int i = 0; i < Iterations; i++) 61 | { 62 | _systems.Execute(); 63 | } 64 | Debug.Log("Run Schmid Iterations_"+Iterations+" time " + (Time.realtimeSinceStartup - t0)); 65 | } 66 | buttonnum++; 67 | } 68 | 69 | void Update() 70 | { 71 | if (!RunInUpdate) return; 72 | _systems.Execute(); 73 | } 74 | #endif 75 | } -------------------------------------------------------------------------------- /Assets/Scripts/SchmidTestRun.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74944e8f0ac34da5ad3776de9689134d 3 | timeCreated: 1518481702 -------------------------------------------------------------------------------- /Assets/Sources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e939a68c8f00573468b1209da0216d04 3 | folderAsset: yes 4 | timeCreated: 1518462593 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 006f219268af64140a651175bd33ced0 3 | folderAsset: yes 4 | timeCreated: 1518650386 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Contexts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f201ae7ecd4a284481bdae8c1fbda96 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Feature.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90be41ba910dc6545b53a61ef3714469 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae78cd4e37e5d44987cdd22f0f52ade 3 | folderAsset: yes 4 | timeCreated: 1518650386 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d372d31c9ba30f24fa23071a3a8f8b3c 3 | folderAsset: yes 4 | timeCreated: 1518650422 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC0Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C0Component ecsSchmidC0 { get { return (EcsSchmid.C0Component)GetComponent(GameComponentsLookup.EcsSchmidC0); } } 12 | public bool hasEcsSchmidC0 { get { return HasComponent(GameComponentsLookup.EcsSchmidC0); } } 13 | 14 | public void AddEcsSchmidC0(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC0; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC0(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC0; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC0() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC0); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC0; 46 | 47 | public static Entitas.IMatcher EcsSchmidC0 { 48 | get { 49 | if (_matcherEcsSchmidC0 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC0); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC0 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC0; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC0Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32834894188075408df353ad0092654 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC10Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c6178ed307aa004cbdaf78cb89961b0 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC11Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9492506921207d40a3185c5be102726 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC12Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C12Component ecsSchmidC12 { get { return (EcsSchmid.C12Component)GetComponent(GameComponentsLookup.EcsSchmidC12); } } 12 | public bool hasEcsSchmidC12 { get { return HasComponent(GameComponentsLookup.EcsSchmidC12); } } 13 | 14 | public void AddEcsSchmidC12(int newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC12; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC12(int newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC12; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC12() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC12); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC12; 46 | 47 | public static Entitas.IMatcher EcsSchmidC12 { 48 | get { 49 | if (_matcherEcsSchmidC12 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC12); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC12 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC12; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC12Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4fd6eb495cc3549808553965642bd8 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC13Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b92ca0fd328cda49bb068785b3f0b1c 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC14Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e899965a34c2c408078b3940927f68 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC15Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C15Component ecsSchmidC15 { get { return (EcsSchmid.C15Component)GetComponent(GameComponentsLookup.EcsSchmidC15); } } 12 | public bool hasEcsSchmidC15 { get { return HasComponent(GameComponentsLookup.EcsSchmidC15); } } 13 | 14 | public void AddEcsSchmidC15(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC15; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC15(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC15; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC15() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC15); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC15; 46 | 47 | public static Entitas.IMatcher EcsSchmidC15 { 48 | get { 49 | if (_matcherEcsSchmidC15 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC15); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC15 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC15; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC15Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac360cfed8302b0408e6f301635b38cd 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC16Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C16Component ecsSchmidC16 { get { return (EcsSchmid.C16Component)GetComponent(GameComponentsLookup.EcsSchmidC16); } } 12 | public bool hasEcsSchmidC16 { get { return HasComponent(GameComponentsLookup.EcsSchmidC16); } } 13 | 14 | public void AddEcsSchmidC16(int newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC16; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC16(int newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC16; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC16() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC16); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC16; 46 | 47 | public static Entitas.IMatcher EcsSchmidC16 { 48 | get { 49 | if (_matcherEcsSchmidC16 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC16); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC16 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC16; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC16Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb5c12abb01444946b6d2c0f28615b42 3 | timeCreated: 1518650428 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC17Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C17Component ecsSchmidC17 { get { return (EcsSchmid.C17Component)GetComponent(GameComponentsLookup.EcsSchmidC17); } } 12 | public bool hasEcsSchmidC17 { get { return HasComponent(GameComponentsLookup.EcsSchmidC17); } } 13 | 14 | public void AddEcsSchmidC17(int newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC17; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC17(int newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC17; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC17() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC17); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC17; 46 | 47 | public static Entitas.IMatcher EcsSchmidC17 { 48 | get { 49 | if (_matcherEcsSchmidC17 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC17); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC17 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC17; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC17Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46e5b25232096f14599ef4b90db9942d 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC18Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fc3d71c0897b9045ac5cb3422fe220a 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC19Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3db503798f917143bea28244b143bf6 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC1Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C1Component ecsSchmidC1 { get { return (EcsSchmid.C1Component)GetComponent(GameComponentsLookup.EcsSchmidC1); } } 12 | public bool hasEcsSchmidC1 { get { return HasComponent(GameComponentsLookup.EcsSchmidC1); } } 13 | 14 | public void AddEcsSchmidC1(float newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC1; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC1(float newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC1; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC1() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC1); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC1; 46 | 47 | public static Entitas.IMatcher EcsSchmidC1 { 48 | get { 49 | if (_matcherEcsSchmidC1 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC1); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC1 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC1; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC1Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b451fa8bc295ea479fc7c4cbcfa4d9a 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC20Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C20Component ecsSchmidC20 { get { return (EcsSchmid.C20Component)GetComponent(GameComponentsLookup.EcsSchmidC20); } } 12 | public bool hasEcsSchmidC20 { get { return HasComponent(GameComponentsLookup.EcsSchmidC20); } } 13 | 14 | public void AddEcsSchmidC20(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC20; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC20(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC20; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC20() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC20); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC20; 46 | 47 | public static Entitas.IMatcher EcsSchmidC20 { 48 | get { 49 | if (_matcherEcsSchmidC20 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC20); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC20 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC20; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC20Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9d4c10d8963d7948874a0bac73bb4fa 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC21Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fe3944ceb36a124c915e782083b928d 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC22Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C22Component ecsSchmidC22 { get { return (EcsSchmid.C22Component)GetComponent(GameComponentsLookup.EcsSchmidC22); } } 12 | public bool hasEcsSchmidC22 { get { return HasComponent(GameComponentsLookup.EcsSchmidC22); } } 13 | 14 | public void AddEcsSchmidC22(int newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC22; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC22(int newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC22; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC22() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC22); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC22; 46 | 47 | public static Entitas.IMatcher EcsSchmidC22 { 48 | get { 49 | if (_matcherEcsSchmidC22 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC22); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC22 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC22; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC22Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f972cac1ed5d2c442afdde2b4e994371 3 | timeCreated: 1518650428 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC23Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f68f19730d39794994de21ba8bc0487 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC24Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C24Component ecsSchmidC24 { get { return (EcsSchmid.C24Component)GetComponent(GameComponentsLookup.EcsSchmidC24); } } 12 | public bool hasEcsSchmidC24 { get { return HasComponent(GameComponentsLookup.EcsSchmidC24); } } 13 | 14 | public void AddEcsSchmidC24(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC24; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC24(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC24; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC24() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC24); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC24; 46 | 47 | public static Entitas.IMatcher EcsSchmidC24 { 48 | get { 49 | if (_matcherEcsSchmidC24 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC24); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC24 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC24; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC24Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4e8d637507638a4ea56b21c3b4777c2 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC25Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60103a85865095547ac3296226f566ba 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC26Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9552ab3a4fb42874e93640893145a945 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC27Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d91448aa5b606f4c9eda97b9b53449d 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC28Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C28Component ecsSchmidC28 { get { return (EcsSchmid.C28Component)GetComponent(GameComponentsLookup.EcsSchmidC28); } } 12 | public bool hasEcsSchmidC28 { get { return HasComponent(GameComponentsLookup.EcsSchmidC28); } } 13 | 14 | public void AddEcsSchmidC28(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC28; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC28(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC28; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC28() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC28); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC28; 46 | 47 | public static Entitas.IMatcher EcsSchmidC28 { 48 | get { 49 | if (_matcherEcsSchmidC28 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC28); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC28 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC28; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC28Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fef1e39a3677f1429443accd0018a43 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC29Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C29Component ecsSchmidC29 { get { return (EcsSchmid.C29Component)GetComponent(GameComponentsLookup.EcsSchmidC29); } } 12 | public bool hasEcsSchmidC29 { get { return HasComponent(GameComponentsLookup.EcsSchmidC29); } } 13 | 14 | public void AddEcsSchmidC29(int newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC29; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC29(int newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC29; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC29() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC29); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC29; 46 | 47 | public static Entitas.IMatcher EcsSchmidC29 { 48 | get { 49 | if (_matcherEcsSchmidC29 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC29); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC29 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC29; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC29Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa1d3dcbb295b324c94e4fbeebee24db 3 | timeCreated: 1518650428 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC2Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C2Component ecsSchmidC2 { get { return (EcsSchmid.C2Component)GetComponent(GameComponentsLookup.EcsSchmidC2); } } 12 | public bool hasEcsSchmidC2 { get { return HasComponent(GameComponentsLookup.EcsSchmidC2); } } 13 | 14 | public void AddEcsSchmidC2(int newField0, float newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC2; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC2(int newField0, float newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC2; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC2() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC2); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC2; 46 | 47 | public static Entitas.IMatcher EcsSchmidC2 { 48 | get { 49 | if (_matcherEcsSchmidC2 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC2); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC2 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC2; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC2Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf2655f418e29954aae2c983b90d882c 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC30Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a113e4cd6b843d4d9aa96dfe6eb8950 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC31Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C31Component ecsSchmidC31 { get { return (EcsSchmid.C31Component)GetComponent(GameComponentsLookup.EcsSchmidC31); } } 12 | public bool hasEcsSchmidC31 { get { return HasComponent(GameComponentsLookup.EcsSchmidC31); } } 13 | 14 | public void AddEcsSchmidC31(int newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC31; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC31(int newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC31; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC31() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC31); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC31; 46 | 47 | public static Entitas.IMatcher EcsSchmidC31 { 48 | get { 49 | if (_matcherEcsSchmidC31 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC31); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC31 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC31; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC31Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31c72b99538cb7040abe2e65a3005397 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC32Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a652d01cabec69479716c94c0e159cf 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC33Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 085066d65b0d0fa47b1a479debcea5f3 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC34Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C34Component ecsSchmidC34 { get { return (EcsSchmid.C34Component)GetComponent(GameComponentsLookup.EcsSchmidC34); } } 12 | public bool hasEcsSchmidC34 { get { return HasComponent(GameComponentsLookup.EcsSchmidC34); } } 13 | 14 | public void AddEcsSchmidC34(int newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC34; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC34(int newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC34; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC34() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC34); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC34; 46 | 47 | public static Entitas.IMatcher EcsSchmidC34 { 48 | get { 49 | if (_matcherEcsSchmidC34 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC34); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC34 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC34; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC34Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cdce4eb1111ca34aa093067ff033682 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC35Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 097781bff09f5354f9fb63ca2ef94bc9 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC36Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d6d20ab190289147b95a44b531bf0df 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC37Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16d9b325b3d05be419fd183eb484ed40 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC38Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C38Component ecsSchmidC38 { get { return (EcsSchmid.C38Component)GetComponent(GameComponentsLookup.EcsSchmidC38); } } 12 | public bool hasEcsSchmidC38 { get { return HasComponent(GameComponentsLookup.EcsSchmidC38); } } 13 | 14 | public void AddEcsSchmidC38(int newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC38; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC38(int newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC38; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC38() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC38); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC38; 46 | 47 | public static Entitas.IMatcher EcsSchmidC38 { 48 | get { 49 | if (_matcherEcsSchmidC38 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC38); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC38 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC38; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC38Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85610207d82e3b439658b0a209f37f8 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC39Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074ff01fd49e5c646afbee7a8dc0a6bf 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC3Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C3Component ecsSchmidC3 { get { return (EcsSchmid.C3Component)GetComponent(GameComponentsLookup.EcsSchmidC3); } } 12 | public bool hasEcsSchmidC3 { get { return HasComponent(GameComponentsLookup.EcsSchmidC3); } } 13 | 14 | public void AddEcsSchmidC3(float newField0, float newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC3; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC3(float newField0, float newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC3; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC3() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC3); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC3; 46 | 47 | public static Entitas.IMatcher EcsSchmidC3 { 48 | get { 49 | if (_matcherEcsSchmidC3 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC3); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC3 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC3; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC3Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3f381ebc48154a45939f0c8f328682e 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC40Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f525684f780b03840b40a102a9e2c4a4 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC41Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5f2062085e51904f8ea63c97625b55c 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC42Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C42Component ecsSchmidC42 { get { return (EcsSchmid.C42Component)GetComponent(GameComponentsLookup.EcsSchmidC42); } } 12 | public bool hasEcsSchmidC42 { get { return HasComponent(GameComponentsLookup.EcsSchmidC42); } } 13 | 14 | public void AddEcsSchmidC42(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC42; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC42(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC42; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC42() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC42); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC42; 46 | 47 | public static Entitas.IMatcher EcsSchmidC42 { 48 | get { 49 | if (_matcherEcsSchmidC42 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC42); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC42 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC42; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC42Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c89b9431ece122c4b9955ea74a443a9d 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC43Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 228d95f036dbaec4bbc8dc8ecb65755d 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC44Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C44Component ecsSchmidC44 { get { return (EcsSchmid.C44Component)GetComponent(GameComponentsLookup.EcsSchmidC44); } } 12 | public bool hasEcsSchmidC44 { get { return HasComponent(GameComponentsLookup.EcsSchmidC44); } } 13 | 14 | public void AddEcsSchmidC44(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC44; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC44(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC44; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC44() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC44); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC44; 46 | 47 | public static Entitas.IMatcher EcsSchmidC44 { 48 | get { 49 | if (_matcherEcsSchmidC44 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC44); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC44 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC44; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC44Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ed7cf89803b2464cb7b664781b08496 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC45Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C45Component ecsSchmidC45 { get { return (EcsSchmid.C45Component)GetComponent(GameComponentsLookup.EcsSchmidC45); } } 12 | public bool hasEcsSchmidC45 { get { return HasComponent(GameComponentsLookup.EcsSchmidC45); } } 13 | 14 | public void AddEcsSchmidC45(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC45; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC45(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC45; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC45() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC45); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC45; 46 | 47 | public static Entitas.IMatcher EcsSchmidC45 { 48 | get { 49 | if (_matcherEcsSchmidC45 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC45); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC45 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC45; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC45Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6e9987ec8f5a9a46b36852c13e852c7 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC46Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63f2fd804c44b9045a141fa2eeaf03f3 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC47Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C47Component ecsSchmidC47 { get { return (EcsSchmid.C47Component)GetComponent(GameComponentsLookup.EcsSchmidC47); } } 12 | public bool hasEcsSchmidC47 { get { return HasComponent(GameComponentsLookup.EcsSchmidC47); } } 13 | 14 | public void AddEcsSchmidC47(long newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC47; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC47(long newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC47; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC47() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC47); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC47; 46 | 47 | public static Entitas.IMatcher EcsSchmidC47 { 48 | get { 49 | if (_matcherEcsSchmidC47 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC47); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC47 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC47; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC47Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8074f42e950d28f4da5be19c39570ab3 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC48Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f87972782e1655945803b1b180d75449 3 | timeCreated: 1518650428 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC49Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b53c2110fe669cf47a26f5bc2c0e044d 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC4Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C4Component ecsSchmidC4 { get { return (EcsSchmid.C4Component)GetComponent(GameComponentsLookup.EcsSchmidC4); } } 12 | public bool hasEcsSchmidC4 { get { return HasComponent(GameComponentsLookup.EcsSchmidC4); } } 13 | 14 | public void AddEcsSchmidC4(int newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC4; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC4(int newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC4; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC4() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC4); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC4; 46 | 47 | public static Entitas.IMatcher EcsSchmidC4 { 48 | get { 49 | if (_matcherEcsSchmidC4 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC4); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC4 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC4; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC4Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 073a5f9ff426083458e2820357d1b0b2 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC50Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a90b72f66f09e54aa1a71b3421acc99 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC51Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05f132d9ca5d38e49a52e535d153130f 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC52Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8e3c4379ec53f940bd58c440bb86e9b 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC53Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86fff9044e0a8a2499a859922872f433 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC54Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7abd5d9fdc13db45822ae74337ab2c3 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC55Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5653304fabd73ca429d777311e521a30 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC56Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dab4419619fcb149b7411347bdcc5af 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC57Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe7759aed20ebd2489b62626c634549a 3 | timeCreated: 1518650428 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC58Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3376d0f7da7fea44ea19bf6bc8c8cb2d 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC59Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea8036b0684b2ef488d752c98db1f410 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC5Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C5Component ecsSchmidC5 { get { return (EcsSchmid.C5Component)GetComponent(GameComponentsLookup.EcsSchmidC5); } } 12 | public bool hasEcsSchmidC5 { get { return HasComponent(GameComponentsLookup.EcsSchmidC5); } } 13 | 14 | public void AddEcsSchmidC5(float newField0, long newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC5; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC5(float newField0, long newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC5; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC5() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC5); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC5; 46 | 47 | public static Entitas.IMatcher EcsSchmidC5 { 48 | get { 49 | if (_matcherEcsSchmidC5 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC5); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC5 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC5; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC5Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9839531d772896244b905d65e6e6d3d4 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC60Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2564bdefed00513479a4d85651911dc6 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC61Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efa2837886330c24891fe617129d62ad 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC62Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b8f1965e87b4bd4b9f10f5be6772d05 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC63Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cbc97987d975b446958d83a62ca3e6f 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC64Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a025758006e176749909675ce07b7472 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC65Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0740a31e3dd50e345bd1e66079503bc3 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC66Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2be4e1a23d9ed96488a3699bf90ae6bf 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC67Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f6e19c57c8dfab489f5276d3e1dd9c1 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC68Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3a1c5f161e2f194c80cb90e93a6bb56 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC69Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a103fa32d7ab124c922c904be4128f7 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC6Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C6Component ecsSchmidC6 { get { return (EcsSchmid.C6Component)GetComponent(GameComponentsLookup.EcsSchmidC6); } } 12 | public bool hasEcsSchmidC6 { get { return HasComponent(GameComponentsLookup.EcsSchmidC6); } } 13 | 14 | public void AddEcsSchmidC6(float newField0, int newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC6; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC6(float newField0, int newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC6; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC6() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC6); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC6; 46 | 47 | public static Entitas.IMatcher EcsSchmidC6 { 48 | get { 49 | if (_matcherEcsSchmidC6 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC6); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC6 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC6; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC6Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4ab2bce862f42d4c972f57c607b6815 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC70Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90e4d77b2d4dea94b9c7ff4377870f47 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC71Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6609f7bb2e3a62641b206461a050b841 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC72Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a282b99e6602fb6458b95a94acceac1b 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC73Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecc43232f9a81c04fabdeebd1a62780d 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC74Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75c5db2a1184f9449a767ba9956e0ed9 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC75Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21016cff9850029439f5cc258b33796c 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC76Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39594753c5c40194b8758529c7deeeac 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC77Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7a2cb250854190419092a461488092e 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC78Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 175eba73113e05043b1517a37709b63b 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC79Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7658455b02d28364c944d8e0cee54de0 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC7Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C7Component ecsSchmidC7 { get { return (EcsSchmid.C7Component)GetComponent(GameComponentsLookup.EcsSchmidC7); } } 12 | public bool hasEcsSchmidC7 { get { return HasComponent(GameComponentsLookup.EcsSchmidC7); } } 13 | 14 | public void AddEcsSchmidC7(float newField0, float newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC7; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC7(float newField0, float newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC7; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC7() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC7); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC7; 46 | 47 | public static Entitas.IMatcher EcsSchmidC7 { 48 | get { 49 | if (_matcherEcsSchmidC7 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC7); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC7 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC7; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC7Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb7608789ab0fd14f8b74e9f4dcc6c3c 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC80Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b00b10b7e0c12c941a16b07fdcd52616 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC81Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c3e286e5f2ccab4db448d583f2f02c8 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC82Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1820a63b573353a448962f4e657289fe 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC83Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5efdead992ab07c47b48decd0b1f9a5b 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC84Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72dc1bbc6130f4e41b1431f62f122831 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC85Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd77eb6ba6586c44bb9571c71ea53a84 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC86Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25efe9e2afeb3254db594b8c6d9d20b1 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC87Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ac327e485875e44197b8b62d4f3e290 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC88Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecf90bb2b218e974693f19f817cc19f7 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC89Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0e6a3f1a97297f46b54d8c550bf5fcc 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC8Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C8Component ecsSchmidC8 { get { return (EcsSchmid.C8Component)GetComponent(GameComponentsLookup.EcsSchmidC8); } } 12 | public bool hasEcsSchmidC8 { get { return HasComponent(GameComponentsLookup.EcsSchmidC8); } } 13 | 14 | public void AddEcsSchmidC8(long newField0, float newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC8; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC8(long newField0, float newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC8; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC8() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC8); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC8; 46 | 47 | public static Entitas.IMatcher EcsSchmidC8 { 48 | get { 49 | if (_matcherEcsSchmidC8 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC8); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC8 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC8; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC8Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a8e03ae9cdb234e9f65f6638c554a5 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC90Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2474783eb065f74dbcc04c8d1870faf 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC91Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1031012bb772be64d84e38459287429a 3 | timeCreated: 1518650423 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC92Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1919bd3641bfa64cbefd2527d731032 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC93Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62fc95b7c5502ac42a5a4689f164ca77 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC94Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1ede61a5bf4cb448ed58398327175c 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC95Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 963aeb5ae59307a4ba294fb2a1e92a58 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC96Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaccb10abc51d6b478b74ff6b99d8e2f 3 | timeCreated: 1518650426 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC97Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0da7c9c260cda4f9b13a919324dd38 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC98Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cf18e49d83201142a104f53aefbc461 3 | timeCreated: 1518650424 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC99Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7374c62d9d5531945a0458542f814d96 3 | timeCreated: 1518650425 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC9Component.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentEntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public partial class GameEntity { 10 | 11 | public EcsSchmid.C9Component ecsSchmidC9 { get { return (EcsSchmid.C9Component)GetComponent(GameComponentsLookup.EcsSchmidC9); } } 12 | public bool hasEcsSchmidC9 { get { return HasComponent(GameComponentsLookup.EcsSchmidC9); } } 13 | 14 | public void AddEcsSchmidC9(int newField0, float newField1) { 15 | var index = GameComponentsLookup.EcsSchmidC9; 16 | var component = CreateComponent(index); 17 | component.field0 = newField0; 18 | component.field1 = newField1; 19 | AddComponent(index, component); 20 | } 21 | 22 | public void ReplaceEcsSchmidC9(int newField0, float newField1) { 23 | var index = GameComponentsLookup.EcsSchmidC9; 24 | var component = CreateComponent(index); 25 | component.field0 = newField0; 26 | component.field1 = newField1; 27 | ReplaceComponent(index, component); 28 | } 29 | 30 | public void RemoveEcsSchmidC9() { 31 | RemoveComponent(GameComponentsLookup.EcsSchmidC9); 32 | } 33 | } 34 | 35 | //------------------------------------------------------------------------------ 36 | // 37 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentMatcherGenerator. 38 | // 39 | // Changes to this file may cause incorrect behavior and will be lost if 40 | // the code is regenerated. 41 | // 42 | //------------------------------------------------------------------------------ 43 | public sealed partial class GameMatcher { 44 | 45 | static Entitas.IMatcher _matcherEcsSchmidC9; 46 | 47 | public static Entitas.IMatcher EcsSchmidC9 { 48 | get { 49 | if (_matcherEcsSchmidC9 == null) { 50 | var matcher = (Entitas.Matcher)Entitas.Matcher.AllOf(GameComponentsLookup.EcsSchmidC9); 51 | matcher.componentNames = GameComponentsLookup.componentNames; 52 | _matcherEcsSchmidC9 = matcher; 53 | } 54 | 55 | return _matcherEcsSchmidC9; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/Components/GameEcsSchmidC9Component.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf88d9a0d6a96c46be5986afdd6519b 3 | timeCreated: 1518650427 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameAttribute.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextAttributeGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed class GameAttribute : Entitas.CodeGeneration.Attributes.ContextAttribute { 10 | 11 | public GameAttribute() : base("Game") { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9160ef5a60978643b71a98a483e31d7 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameComponentsLookup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d8fcd624bfa2834599edca70983b8fd 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameContext.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class GameContext : Entitas.Context { 10 | 11 | public GameContext() 12 | : base( 13 | GameComponentsLookup.TotalComponents, 14 | 0, 15 | new Entitas.ContextInfo( 16 | "Game", 17 | GameComponentsLookup.componentNames, 18 | GameComponentsLookup.componentTypes 19 | ), 20 | (entity) => 21 | 22 | #if (ENTITAS_FAST_AND_UNSAFE) 23 | new Entitas.UnsafeAERC() 24 | #else 25 | new Entitas.SafeAERC(entity) 26 | #endif 27 | 28 | ) { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a467961f0d23dd54dacf776b14ee7158 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameEntity.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.EntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class GameEntity : Entitas.Entity { 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameEntity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f09768ac1f73cbb4288a9fff96603f03 3 | timeCreated: 1518650387 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameMatcher.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextMatcherGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class GameMatcher { 10 | 11 | public static Entitas.IAllOfMatcher AllOf(params int[] indices) { 12 | return Entitas.Matcher.AllOf(indices); 13 | } 14 | 15 | public static Entitas.IAllOfMatcher AllOf(params Entitas.IMatcher[] matchers) { 16 | return Entitas.Matcher.AllOf(matchers); 17 | } 18 | 19 | public static Entitas.IAnyOfMatcher AnyOf(params int[] indices) { 20 | return Entitas.Matcher.AnyOf(indices); 21 | } 22 | 23 | public static Entitas.IAnyOfMatcher AnyOf(params Entitas.IMatcher[] matchers) { 24 | return Entitas.Matcher.AnyOf(matchers); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Game/GameMatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54382925c35c1c3448d35da78e25a82f 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0c01dede0d142549a46b3df6dfe7f9d 3 | folderAsset: yes 4 | timeCreated: 1518650386 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputAttribute.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextAttributeGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed class InputAttribute : Entitas.CodeGeneration.Attributes.ContextAttribute { 10 | 11 | public InputAttribute() : base("Input") { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c51a8a39085a5b4993f4ef8e215742b 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputComponentsLookup.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ComponentsLookupGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public static class InputComponentsLookup { 10 | 11 | 12 | 13 | public const int TotalComponents = 0; 14 | 15 | public static readonly string[] componentNames = { 16 | 17 | }; 18 | 19 | public static readonly System.Type[] componentTypes = { 20 | 21 | }; 22 | } 23 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputComponentsLookup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62afdfa5d9bdb5542a4d80266b16de9f 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputContext.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class InputContext : Entitas.Context { 10 | 11 | public InputContext() 12 | : base( 13 | InputComponentsLookup.TotalComponents, 14 | 0, 15 | new Entitas.ContextInfo( 16 | "Input", 17 | InputComponentsLookup.componentNames, 18 | InputComponentsLookup.componentTypes 19 | ), 20 | (entity) => 21 | 22 | #if (ENTITAS_FAST_AND_UNSAFE) 23 | new Entitas.UnsafeAERC() 24 | #else 25 | new Entitas.SafeAERC(entity) 26 | #endif 27 | 28 | ) { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95c649e70c2efe8439d35d71dfe816b9 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputEntity.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.EntityGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class InputEntity : Entitas.Entity { 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputEntity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63dca31c669eddf4692d2a7d21b46bb6 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputMatcher.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by Entitas.CodeGeneration.Plugins.ContextMatcherGenerator. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | public sealed partial class InputMatcher { 10 | 11 | public static Entitas.IAllOfMatcher AllOf(params int[] indices) { 12 | return Entitas.Matcher.AllOf(indices); 13 | } 14 | 15 | public static Entitas.IAllOfMatcher AllOf(params Entitas.IMatcher[] matchers) { 16 | return Entitas.Matcher.AllOf(matchers); 17 | } 18 | 19 | public static Entitas.IAnyOfMatcher AnyOf(params int[] indices) { 20 | return Entitas.Matcher.AnyOf(indices); 21 | } 22 | 23 | public static Entitas.IAnyOfMatcher AnyOf(params Entitas.IMatcher[] matchers) { 24 | return Entitas.Matcher.AnyOf(matchers); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Sources/Generated/Input/InputMatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 749772f1fb56add42b15b8e2cc320c15 3 | timeCreated: 1518650386 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/SpeedTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00a4e7e1647399e4b979960dc6174842 3 | timeCreated: 1518477636 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ecs-leo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c4861b9769fccd43a9d713b98ab7007 3 | folderAsset: yes 4 | timeCreated: 1518462000 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ecs-leo/.gitignore: -------------------------------------------------------------------------------- 1 | *.csproj 2 | *.sln 3 | .vscode 4 | Library 5 | obj 6 | Temp 7 | *.meta 8 | -------------------------------------------------------------------------------- /Assets/ecs-leo/Core/EcsSystem.cs: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------------------------------------- 2 | // The MIT License 3 | // Simple Entity Component System framework https://github.com/Leopotam/ecs 4 | // Copyright (c) 2017-2018 Leopotam 5 | // ---------------------------------------------------------------------------- 6 | 7 | namespace LeopotamGroup.Ecs { 8 | /// 9 | /// Base interface for all ecs systems. 10 | /// 11 | public interface IEcsSystem { } 12 | 13 | /// 14 | /// Allows custom initialization / deinitialization for ecs system. 15 | /// 16 | public interface IEcsInitSystem : IEcsSystem { 17 | /// 18 | /// Initializes system inside EcsWorld instance. 19 | /// 20 | void Initialize (); 21 | 22 | /// 23 | /// Destroys all internal allocated data. 24 | /// 25 | void Destroy (); 26 | } 27 | 28 | /// 29 | /// Allows custom initialization / deinitialization for ecs system before standard Initialize / Destroy calls. 30 | /// 31 | public interface IEcsPreInitSystem : IEcsSystem { 32 | /// 33 | /// Initializes system inside EcsWorld instance. 34 | /// 35 | void PreInitialize (); 36 | 37 | /// 38 | /// Destroys all internal allocated data. 39 | /// 40 | void PreDestroy (); 41 | } 42 | 43 | /// 44 | /// Allows custom logic processing. 45 | /// 46 | public interface IEcsRunSystem : IEcsSystem { 47 | /// 48 | /// Custom logic. 49 | /// 50 | void Run (); 51 | } 52 | } -------------------------------------------------------------------------------- /Assets/ecs-leo/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-2018 Leopotam 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /Assets/ecs-leo/LeopotamGroup.Ecs.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LeopotamGroup.Ecs", 3 | "references": [], 4 | "includePlatforms": [], 5 | "excludePlatforms": [] 6 | } -------------------------------------------------------------------------------- /Assets/ecs-leo/Utils/EcsAttributes.cs: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------------------------------------- 2 | // The MIT License 3 | // Simple Entity Component System framework https://github.com/Leopotam/ecs 4 | // Copyright (c) 2017-2018 Leopotam 5 | // ---------------------------------------------------------------------------- 6 | 7 | using System; 8 | 9 | namespace LeopotamGroup.Ecs { 10 | /// 11 | /// Processes injection to EcsWorld field. 12 | /// 13 | [AttributeUsage (AttributeTargets.Field)] 14 | public sealed class EcsWorldAttribute : Attribute { } 15 | 16 | /// 17 | /// Processes injection to EcsFilter field - declares required components. 18 | /// 19 | [AttributeUsage (AttributeTargets.Field)] 20 | public sealed class EcsFilterIncludeAttribute : Attribute { 21 | public readonly Type[] Components; 22 | 23 | public EcsFilterIncludeAttribute (params Type[] components) { 24 | Components = components; 25 | } 26 | } 27 | 28 | /// 29 | /// Processes injection to EcsFilter field - declares denied components. 30 | /// 31 | [AttributeUsage (AttributeTargets.Field)] 32 | public sealed class EcsFilterExcludeAttribute : Attribute { 33 | public readonly Type[] Components; 34 | 35 | public EcsFilterExcludeAttribute (params Type[] components) { 36 | Components = components; 37 | } 38 | } 39 | 40 | /// 41 | /// Processes injection to EcsFilter field - filter should be filled with compatible entities. 42 | /// 43 | [AttributeUsage (AttributeTargets.Field)] 44 | public sealed class EcsFilterFillAttribute : Attribute { } 45 | } -------------------------------------------------------------------------------- /Assets/ecs-leo/Utils/EcsHelpers.cs: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------------------------------------- 2 | // The MIT License 3 | // Simple Entity Component System framework https://github.com/Leopotam/ecs 4 | // Copyright (c) 2017-2018 Leopotam 5 | // ---------------------------------------------------------------------------- 6 | 7 | namespace LeopotamGroup.Ecs.Internals { 8 | /// 9 | /// Internal helpers. 10 | /// 11 | static class EcsHelpers { 12 | #if NET_4_6 13 | [System.Runtime.CompilerServices.MethodImpl (System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] 14 | #endif 15 | public static int GetPowerOfTwoSize (int n) { 16 | if (n < 2) { 17 | return 2; 18 | } 19 | n--; 20 | n = n | (n >> 1); 21 | n = n | (n >> 2); 22 | n = n | (n >> 4); 23 | n = n | (n >> 8); 24 | n = n | (n >> 16); 25 | return n + 1; 26 | } 27 | 28 | public static int ComponentsCount; 29 | } 30 | } -------------------------------------------------------------------------------- /Assets/ecs-leo/Utils/EcsWorldStats.cs: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------------------------------------- 2 | // The MIT License 3 | // Simple Entity Component System framework https://github.com/Leopotam/ecs 4 | // Copyright (c) 2017-2018 Leopotam 5 | // ---------------------------------------------------------------------------- 6 | 7 | namespace LeopotamGroup.Ecs { 8 | public struct EcsWorldStats { 9 | /// 10 | /// Amount of active entities. 11 | /// 12 | public int ActiveEntities; 13 | 14 | /// 15 | /// Amount of cached (not in use) entities. 16 | /// 17 | public int ReservedEntities; 18 | 19 | /// 20 | /// Amount of registered filters. 21 | /// 22 | public int Filters; 23 | 24 | /// 25 | /// Amount of registered component types. 26 | /// 27 | public int Components; 28 | } 29 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Evgeniy Chegodaev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 1 23 | m_ClothInterCollisionSettingsToggle: 0 24 | m_ContactPairsMode: 0 25 | m_BroadphaseType: 0 26 | m_WorldBounds: 27 | m_Center: {x: 0, y: 0, z: 0} 28 | m_Extent: {x: 250, y: 250, z: 250} 29 | m_WorldSubdivisions: 8 30 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/leo.unity 10 | guid: 00a4e7e1647399e4b979960dc6174842 11 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 0 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} 39 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} 40 | - {fileID: 16002, guid: 0000000000000000f000000000000000, type: 0} 41 | m_PreloadedShaders: [] 42 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 43 | type: 0} 44 | m_CustomRenderPipeline: {fileID: 0} 45 | m_TransparencySortMode: 0 46 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 47 | m_DefaultRenderingPath: 1 48 | m_DefaultMobileRenderingPath: 1 49 | m_TierSettings: [] 50 | m_LightmapStripping: 0 51 | m_FogStripping: 0 52 | m_InstancingStripping: 0 53 | m_LightmapKeepPlain: 1 54 | m_LightmapKeepDirCombined: 1 55 | m_LightmapKeepDynamicPlain: 1 56 | m_LightmapKeepDynamicDirCombined: 1 57 | m_LightmapKeepShadowMask: 1 58 | m_LightmapKeepSubtractive: 1 59 | m_FogKeepLinear: 1 60 | m_FogKeepExp: 1 61 | m_FogKeepExp2: 1 62 | m_AlbedoSwatchInfos: [] 63 | m_LightsUseLinearIntensity: 0 64 | m_LightsUseColorTemperature: 0 65 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_AutoSimulation: 1 23 | m_QueriesHitTriggers: 1 24 | m_QueriesStartInColliders: 1 25 | m_ChangeStopsCallbacks: 0 26 | m_CallbacksOnDisable: 1 27 | m_AutoSyncTransforms: 1 28 | m_AlwaysShowColliders: 0 29 | m_ShowColliderSleep: 1 30 | m_ShowColliderContacts: 0 31 | m_ShowColliderAABB: 0 32 | m_ContactArrowScale: 0.2 33 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 34 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 35 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 36 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 37 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 38 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate 14 | m_Enabled: 0 15 | m_CaptureEditorExceptions: 1 16 | UnityPurchasingSettings: 17 | m_Enabled: 0 18 | m_TestMode: 0 19 | UnityAnalyticsSettings: 20 | m_Enabled: 0 21 | m_InitializeOnStartup: 1 22 | m_TestMode: 0 23 | m_TestEventUrl: 24 | m_TestConfigUrl: 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /necro.userproperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echeg/unityecs_speedtest/b2fb06019879cfcda545363940926fa236f7085d/necro.userproperties --------------------------------------------------------------------------------