├── .gitattributes ├── .gitignore ├── Assets ├── Entitas.meta ├── Entitas │ ├── Compile.cs │ ├── Compile.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Entitas.CodeGeneration.CodeGenerator.dll │ │ ├── Entitas.CodeGeneration.CodeGenerator.dll.meta │ │ ├── Entitas.CodeGeneration.Plugins.dll │ │ ├── Entitas.CodeGeneration.Plugins.dll.meta │ │ ├── Entitas.CodeGeneration.Unity.Editor.dll │ │ ├── Entitas.CodeGeneration.Unity.Editor.dll.meta │ │ ├── Entitas.CodeGeneration.dll │ │ ├── Entitas.CodeGeneration.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.CodeGeneration.Plugins.dll │ │ ├── Entitas.VisualDebugging.CodeGeneration.Plugins.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 │ ├── Entitas.Blueprints.dll │ ├── Entitas.Blueprints.dll.meta │ ├── Entitas.CodeGeneration.Attributes.dll │ ├── Entitas.CodeGeneration.Attributes.dll.meta │ ├── Entitas.Unity.dll │ ├── Entitas.Unity.dll.meta │ ├── Entitas.Utils.dll │ ├── Entitas.Utils.dll.meta │ ├── Entitas.VisualDebugging.Unity.dll │ ├── Entitas.VisualDebugging.Unity.dll.meta │ ├── Entitas.dll │ ├── Entitas.dll.meta │ ├── fabl.Appenders.dll │ ├── fabl.Appenders.dll.meta │ ├── fabl.dll │ └── fabl.dll.meta ├── EntitasGenerated.meta ├── EntitasGenerated │ ├── Generated.meta │ └── Generated │ │ ├── Contexts.cs │ │ ├── Contexts.cs.meta │ │ ├── Feature.cs │ │ ├── Feature.cs.meta │ │ ├── Game.meta │ │ ├── Game │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── GameConsumeElixirComponent.cs │ │ │ ├── GameConsumeElixirComponent.cs.meta │ │ │ ├── GameConsumptionHistoryComponent.cs │ │ │ ├── GameConsumptionHistoryComponent.cs.meta │ │ │ ├── GameDebugMessageComponent.cs │ │ │ ├── GameDebugMessageComponent.cs.meta │ │ │ ├── GameDirectionComponent.cs │ │ │ ├── GameDirectionComponent.cs.meta │ │ │ ├── GameElixirComponent.cs │ │ │ ├── GameElixirComponent.cs.meta │ │ │ ├── GameElixirLisenterComponent.cs │ │ │ ├── GameElixirLisenterComponent.cs.meta │ │ │ ├── GameJumpInTimeComponent.cs │ │ │ ├── GameJumpInTimeComponent.cs.meta │ │ │ ├── GameLogicSystemComponent.cs │ │ │ ├── GameLogicSystemComponent.cs.meta │ │ │ ├── GameMoveCompleteComponent.cs │ │ │ ├── GameMoveCompleteComponent.cs.meta │ │ │ ├── GameMoveComponent.cs │ │ │ ├── GameMoveComponent.cs.meta │ │ │ ├── GameMoverComponent.cs │ │ │ ├── GameMoverComponent.cs.meta │ │ │ ├── GamePauseComponent.cs │ │ │ ├── GamePauseComponent.cs.meta │ │ │ ├── GamePauseListenerComponent.cs │ │ │ ├── GamePauseListenerComponent.cs.meta │ │ │ ├── GamePositionComponent.cs │ │ │ ├── GamePositionComponent.cs.meta │ │ │ ├── GameSpriteComponent.cs │ │ │ ├── GameSpriteComponent.cs.meta │ │ │ ├── GameTickComponent.cs │ │ │ ├── GameTickComponent.cs.meta │ │ │ ├── GameTickListenerComponent.cs │ │ │ ├── GameTickListenerComponent.cs.meta │ │ │ ├── GameViewComponent.cs │ │ │ └── GameViewComponent.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 │ │ ├── Components.meta │ │ ├── Components │ │ ├── InputLeftMouseComponent.cs │ │ ├── InputLeftMouseComponent.cs.meta │ │ ├── InputMouseDownComponent.cs │ │ ├── InputMouseDownComponent.cs.meta │ │ ├── InputMousePositionComponent.cs │ │ ├── InputMousePositionComponent.cs.meta │ │ ├── InputMouseUpComponent.cs │ │ ├── InputMouseUpComponent.cs.meta │ │ ├── InputRightMouseComponent.cs │ │ └── InputRightMouseComponent.cs.meta │ │ ├── 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 ├── Resources.meta ├── Resources │ ├── monster_big.png │ ├── monster_big.png.meta │ ├── monster_small.png │ └── monster_small.png.meta ├── TestExamples.meta └── TestExamples │ ├── 1_HelloWorld.meta │ ├── 1_HelloWorld │ ├── 1_HelloWorld.unity │ ├── 1_HelloWorld.unity.meta │ ├── GameController.cs │ ├── GameController.cs.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Components.meta │ │ ├── Components │ │ ├── DebugMessageComponent.cs │ │ └── DebugMessageComponent.cs.meta │ │ ├── Systems.meta │ │ └── Systems │ │ ├── CleanupDebugMessageSystem.cs │ │ ├── CleanupDebugMessageSystem.cs.meta │ │ ├── DebugMessageSystem.cs │ │ ├── DebugMessageSystem.cs.meta │ │ ├── HelloWorldSystem.cs │ │ ├── HelloWorldSystem.cs.meta │ │ ├── LogMouseClickSystem.cs │ │ ├── LogMouseClickSystem.cs.meta │ │ ├── TutorialSystems.cs │ │ └── TutorialSystems.cs.meta │ ├── 2_EntityViewAndMovement.meta │ ├── 2_EntityViewAndMovement │ ├── Demo2Example.unity │ ├── Demo2Example.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Components.meta │ │ ├── Components │ │ ├── Components.cs │ │ └── Components.cs.meta │ │ ├── Demo2GameController.cs │ │ ├── Demo2GameController.cs.meta │ │ ├── Systems.meta │ │ └── Systems │ │ ├── AddViewSystem.cs │ │ ├── AddViewSystem.cs.meta │ │ ├── CommandMoveSystem.cs │ │ ├── CommandMoveSystem.cs.meta │ │ ├── CreateMoverSystem.cs │ │ ├── CreateMoverSystem.cs.meta │ │ ├── EmitInputSystem.cs │ │ ├── EmitInputSystem.cs.meta │ │ ├── InputSystems.cs │ │ ├── InputSystems.cs.meta │ │ ├── MoveSystem.cs │ │ ├── MoveSystem.cs.meta │ │ ├── MovementtSystems.cs │ │ ├── MovementtSystems.cs.meta │ │ ├── RenderDirectionSystem.cs │ │ ├── RenderDirectionSystem.cs.meta │ │ ├── RenderPositionSystem.cs │ │ ├── RenderPositionSystem.cs.meta │ │ ├── RenderSpriteSystem.cs │ │ ├── RenderSpriteSystem.cs.meta │ │ ├── ViewSystems.cs │ │ └── ViewSystems.cs.meta │ ├── 3_PlayBackSystem.meta │ └── 3_PlayBackSystem │ ├── Demo3-PlayBack.unity │ ├── Demo3-PlayBack.unity.meta │ ├── Scripts.meta │ └── Scripts │ ├── Behaviour.meta │ ├── Behaviour │ ├── ConsumeButtonBehaviour.cs │ ├── ConsumeButtonBehaviour.cs.meta │ ├── ElixirAmountBehaviour.cs │ ├── ElixirAmountBehaviour.cs.meta │ ├── ElixirBarBehaviour.cs │ ├── ElixirBarBehaviour.cs.meta │ ├── PauseButtonBehaviour.cs │ ├── PauseButtonBehaviour.cs.meta │ ├── TimeBehaviour.cs │ ├── TimeBehaviour.cs.meta │ ├── TimePickerBehaviour.cs │ └── TimePickerBehaviour.cs.meta │ ├── Components.meta │ ├── Components │ ├── ConsumeElixirComponent.cs │ ├── ConsumeElixirComponent.cs.meta │ ├── ConsumptionHistoryComponent.cs │ ├── ConsumptionHistoryComponent.cs.meta │ ├── ElixirComponent.cs │ ├── ElixirComponent.cs.meta │ ├── ElixirLisenterComponent.cs │ ├── ElixirLisenterComponent.cs.meta │ ├── JumpInTimeComponent.cs │ ├── JumpInTimeComponent.cs.meta │ ├── LogicSystemComponent.cs │ ├── LogicSystemComponent.cs.meta │ ├── PauseComponent.cs │ ├── PauseComponent.cs.meta │ ├── PauseListenerComponent.cs │ ├── PauseListenerComponent.cs.meta │ ├── TickComponent.cs │ ├── TickComponent.cs.meta │ ├── TickListenerComponent.cs │ └── TickListenerComponent.cs.meta │ ├── Demo3GameController.cs │ ├── Demo3GameController.cs.meta │ ├── Interface.meta │ ├── Interface │ ├── IElixirListener.cs │ ├── IElixirListener.cs.meta │ ├── IPauseListener.cs │ ├── IPauseListener.cs.meta │ ├── ITickListener.cs │ └── ITickListener.cs.meta │ ├── Systems.meta │ └── Systems │ ├── CleanupConsumtionHistorySystem.cs │ ├── CleanupConsumtionHistorySystem.cs.meta │ ├── ConsumeElixirCleanupSystem.cs │ ├── ConsumeElixirCleanupSystem.cs.meta │ ├── ConsumeElixirSystem.cs │ ├── ConsumeElixirSystem.cs.meta │ ├── ElixirConsumePersistSystem.cs │ ├── ElixirConsumePersistSystem.cs.meta │ ├── NotifyElixirListenersSystem.cs │ ├── NotifyElixirListenersSystem.cs.meta │ ├── NotifyPauseListenersSystem.cs │ ├── NotifyPauseListenersSystem.cs.meta │ ├── NotifyTickListenersSystem.cs │ ├── NotifyTickListenersSystem.cs.meta │ ├── ProduceElixirSystem.cs │ ├── ProduceElixirSystem.cs.meta │ ├── ReplaySystem.cs │ ├── ReplaySystem.cs.meta │ ├── TickUpdateSystem.cs │ └── TickUpdateSystem.cs.meta ├── Entitas.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 └── User.properties /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Entitas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas.meta -------------------------------------------------------------------------------- /Assets/Entitas/Compile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Compile.cs -------------------------------------------------------------------------------- /Assets/Entitas/Compile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Compile.cs.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.CodeGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.CodeGenerator.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.CodeGenerator.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.CodeGenerator.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.Plugins.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.Plugins.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.Unity.Editor.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.CodeGeneration.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.CodeGeneration.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Migration.Unity.Editor.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Migration.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Migration.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Migration.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.Unity.Editor.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.CodeGeneration.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.VisualDebugging.CodeGeneration.Plugins.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.CodeGeneration.Plugins.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.VisualDebugging.CodeGeneration.Plugins.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Entitas.VisualDebugging.Unity.Editor.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasContextErrorHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasContextHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasEntityErrorHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasEntityHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasHeader.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasHeader.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasHeader.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasSystemsErrorHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png -------------------------------------------------------------------------------- /Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Editor/Images/EntitasSystemsHierarchyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Blueprints.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Blueprints.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Blueprints.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Blueprints.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.CodeGeneration.Attributes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.CodeGeneration.Attributes.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.CodeGeneration.Attributes.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.CodeGeneration.Attributes.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Unity.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Unity.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Unity.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Utils.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.Utils.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.Utils.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.VisualDebugging.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.VisualDebugging.Unity.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.VisualDebugging.Unity.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.VisualDebugging.Unity.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.dll -------------------------------------------------------------------------------- /Assets/Entitas/Entitas.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/Entitas.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/fabl.Appenders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/fabl.Appenders.dll -------------------------------------------------------------------------------- /Assets/Entitas/fabl.Appenders.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/fabl.Appenders.dll.meta -------------------------------------------------------------------------------- /Assets/Entitas/fabl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/fabl.dll -------------------------------------------------------------------------------- /Assets/Entitas/fabl.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Entitas/fabl.dll.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Contexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Contexts.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Contexts.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Contexts.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Feature.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Feature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Feature.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameConsumeElixirComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameConsumeElixirComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameConsumeElixirComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameConsumeElixirComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameConsumptionHistoryComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameConsumptionHistoryComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameConsumptionHistoryComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameConsumptionHistoryComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameDebugMessageComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameDebugMessageComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameDebugMessageComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameDebugMessageComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameDirectionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameDirectionComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameDirectionComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameDirectionComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameElixirComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameElixirComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameElixirComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameElixirComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameElixirLisenterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameElixirLisenterComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameElixirLisenterComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameElixirLisenterComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameJumpInTimeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameJumpInTimeComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameJumpInTimeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameJumpInTimeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameLogicSystemComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameLogicSystemComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameLogicSystemComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameLogicSystemComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoveCompleteComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoveCompleteComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoveCompleteComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoveCompleteComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoveComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoveComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoveComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoveComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoverComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoverComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameMoverComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameMoverComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePauseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePauseComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePauseComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePauseComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePauseListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePauseListenerComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePauseListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePauseListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePositionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePositionComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GamePositionComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GamePositionComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameSpriteComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameSpriteComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameSpriteComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameSpriteComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameTickComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameTickComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameTickComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameTickComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameTickListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameTickListenerComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameTickListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameTickListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameViewComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/Components/GameViewComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/Components/GameViewComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameAttribute.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameContext.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameContext.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameEntity.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameEntity.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameMatcher.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Game/GameMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Game/GameMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputLeftMouseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputLeftMouseComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputLeftMouseComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputLeftMouseComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMouseDownComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMouseDownComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMouseDownComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMouseDownComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMousePositionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMousePositionComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMousePositionComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMousePositionComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMouseUpComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMouseUpComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputMouseUpComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputMouseUpComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputRightMouseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputRightMouseComponent.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/Components/InputRightMouseComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/Components/InputRightMouseComponent.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputAttribute.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputContext.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputContext.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputEntity.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputEntity.cs.meta -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputMatcher.cs -------------------------------------------------------------------------------- /Assets/EntitasGenerated/Generated/Input/InputMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/EntitasGenerated/Generated/Input/InputMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/monster_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Resources/monster_big.png -------------------------------------------------------------------------------- /Assets/Resources/monster_big.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Resources/monster_big.png.meta -------------------------------------------------------------------------------- /Assets/Resources/monster_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Resources/monster_small.png -------------------------------------------------------------------------------- /Assets/Resources/monster_small.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/Resources/monster_small.png.meta -------------------------------------------------------------------------------- /Assets/TestExamples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/1_HelloWorld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/1_HelloWorld.unity -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/1_HelloWorld.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/1_HelloWorld.unity.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/GameController.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/GameController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/GameController.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Components.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Components/DebugMessageComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Components/DebugMessageComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Components/DebugMessageComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Components/DebugMessageComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/CleanupDebugMessageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/CleanupDebugMessageSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/CleanupDebugMessageSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/CleanupDebugMessageSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/DebugMessageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/DebugMessageSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/DebugMessageSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/DebugMessageSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/HelloWorldSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/HelloWorldSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/HelloWorldSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/HelloWorldSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/LogMouseClickSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/LogMouseClickSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/LogMouseClickSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/LogMouseClickSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/TutorialSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/TutorialSystems.cs -------------------------------------------------------------------------------- /Assets/TestExamples/1_HelloWorld/Scripts/Systems/TutorialSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/1_HelloWorld/Scripts/Systems/TutorialSystems.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Demo2Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Demo2Example.unity -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Demo2Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Demo2Example.unity.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components/Components.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components/Components.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Components/Components.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Demo2GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Demo2GameController.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Demo2GameController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Demo2GameController.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/AddViewSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/AddViewSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/AddViewSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/AddViewSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CommandMoveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CommandMoveSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CommandMoveSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CommandMoveSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CreateMoverSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CreateMoverSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CreateMoverSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/CreateMoverSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/EmitInputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/EmitInputSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/EmitInputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/EmitInputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/InputSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/InputSystems.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/InputSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/InputSystems.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MoveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MoveSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MoveSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MoveSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MovementtSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MovementtSystems.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MovementtSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/MovementtSystems.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderDirectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderDirectionSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderDirectionSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderDirectionSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderPositionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderPositionSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderPositionSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderPositionSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderSpriteSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderSpriteSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderSpriteSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/RenderSpriteSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/ViewSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/ViewSystems.cs -------------------------------------------------------------------------------- /Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/ViewSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/2_EntityViewAndMovement/Scripts/Systems/ViewSystems.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Demo3-PlayBack.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Demo3-PlayBack.unity -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Demo3-PlayBack.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Demo3-PlayBack.unity.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ConsumeButtonBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ConsumeButtonBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ConsumeButtonBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ConsumeButtonBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirAmountBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirAmountBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirAmountBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirAmountBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirBarBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirBarBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirBarBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/ElixirBarBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/PauseButtonBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/PauseButtonBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/PauseButtonBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/PauseButtonBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimeBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimeBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimeBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimeBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimePickerBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimePickerBehaviour.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimePickerBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Behaviour/TimePickerBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumeElixirComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumeElixirComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumeElixirComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumeElixirComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumptionHistoryComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumptionHistoryComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumptionHistoryComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ConsumptionHistoryComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirLisenterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirLisenterComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirLisenterComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/ElixirLisenterComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/JumpInTimeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/JumpInTimeComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/JumpInTimeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/JumpInTimeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/LogicSystemComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/LogicSystemComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/LogicSystemComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/LogicSystemComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseListenerComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/PauseListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickListenerComponent.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Components/TickListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Demo3GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Demo3GameController.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Demo3GameController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Demo3GameController.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IElixirListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IElixirListener.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IElixirListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IElixirListener.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IPauseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IPauseListener.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IPauseListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/IPauseListener.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/ITickListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/ITickListener.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/ITickListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Interface/ITickListener.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/CleanupConsumtionHistorySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/CleanupConsumtionHistorySystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/CleanupConsumtionHistorySystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/CleanupConsumtionHistorySystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirCleanupSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirCleanupSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirCleanupSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirCleanupSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ConsumeElixirSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ElixirConsumePersistSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ElixirConsumePersistSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ElixirConsumePersistSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ElixirConsumePersistSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyElixirListenersSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyElixirListenersSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyElixirListenersSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyElixirListenersSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyPauseListenersSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyPauseListenersSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyPauseListenersSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyPauseListenersSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyTickListenersSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyTickListenersSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyTickListenersSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/NotifyTickListenersSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ProduceElixirSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ProduceElixirSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ProduceElixirSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ProduceElixirSystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ReplaySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ReplaySystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ReplaySystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/ReplaySystem.cs.meta -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/TickUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/TickUpdateSystem.cs -------------------------------------------------------------------------------- /Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/TickUpdateSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Assets/TestExamples/3_PlayBackSystem/Scripts/Systems/TickUpdateSystem.cs.meta -------------------------------------------------------------------------------- /Entitas.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/Entitas.properties -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.3f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Entitas-Framework-Usage/HEAD/README.md -------------------------------------------------------------------------------- /User.properties: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------