├── .gitignore ├── Assets ├── Plugins.meta ├── Plugins │ ├── GamesTan.meta │ └── GamesTan │ │ ├── Model.Ext.meta │ │ ├── Model.Ext │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ ├── Ext.meta │ │ │ ├── Ext │ │ │ ├── OdinInspectorExt.cs │ │ │ ├── OdinInspectorExt.cs.meta │ │ │ ├── TransformExt.cs │ │ │ └── TransformExt.cs.meta │ │ │ ├── GamesTan.Model.Ext.asmdef │ │ │ ├── GamesTan.Model.Ext.asmdef.meta │ │ │ ├── Util.meta │ │ │ └── Util │ │ │ ├── BitUtil.cs │ │ │ ├── BitUtil.cs.meta │ │ │ ├── EditorExtUtil.cs │ │ │ ├── EditorExtUtil.cs.meta │ │ │ ├── PathUtil.cs │ │ │ ├── PathUtil.cs.meta │ │ │ ├── Singleton.cs │ │ │ ├── Singleton.cs.meta │ │ │ ├── TransformUtil.cs │ │ │ └── TransformUtil.cs.meta │ │ ├── Model_Event.meta │ │ └── Model_Event │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Runtime.meta │ │ └── Runtime │ │ ├── EEvent.cs │ │ ├── EEvent.cs.meta │ │ ├── EventRegisterService.cs │ │ ├── EventRegisterService.cs.meta │ │ ├── EventUtil.cs │ │ ├── EventUtil.cs.meta │ │ ├── EventUtilImpl.cs │ │ ├── EventUtilImpl.cs.meta │ │ ├── GamesTan.Model.Event.asmdef │ │ ├── GamesTan.Model.Event.asmdef.meta │ │ ├── IEventRegisterService.cs │ │ └── IEventRegisterService.cs.meta ├── Res.meta ├── Res │ ├── Animation.meta │ ├── Animation │ │ ├── Animations.meta │ │ ├── Animations │ │ │ ├── Enemy1Attack.anim │ │ │ ├── Enemy1Attack.anim.meta │ │ │ ├── Enemy1Idle.anim │ │ │ ├── Enemy1Idle.anim.meta │ │ │ ├── Enemy2Attack.anim │ │ │ ├── Enemy2Attack.anim.meta │ │ │ ├── Enemy2Idle.anim │ │ │ ├── Enemy2Idle.anim.meta │ │ │ ├── PlayerChop.anim │ │ │ ├── PlayerChop.anim.meta │ │ │ ├── PlayerHit.anim │ │ │ ├── PlayerHit.anim.meta │ │ │ ├── PlayerIdle.anim │ │ │ └── PlayerIdle.anim.meta │ │ ├── AnimatorControllers.meta │ │ └── AnimatorControllers │ │ │ ├── Enemy1.controller │ │ │ ├── Enemy1.controller.meta │ │ │ ├── Enemy2.overrideController │ │ │ ├── Enemy2.overrideController.meta │ │ │ ├── Player.controller │ │ │ └── Player.controller.meta │ ├── Controllers.meta │ ├── Controllers │ │ ├── AudioManager.prefab │ │ ├── AudioManager.prefab.meta │ │ ├── GameManager.prefab │ │ ├── GameManager.prefab.meta │ │ ├── InputManager.prefab │ │ ├── InputManager.prefab.meta │ │ ├── ResourceManager.prefab │ │ ├── ResourceManager.prefab.meta │ │ ├── UIManager.prefab │ │ └── UIManager.prefab.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── OFL.txt │ │ ├── OFL.txt.meta │ │ ├── PressStart2P-Regular.ttf │ │ └── PressStart2P-Regular.ttf.meta │ ├── Music.meta │ ├── Music │ │ ├── scavengers_music.aif │ │ └── scavengers_music.aif.meta │ ├── Prefabs.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── Scavengers_SpriteSheet.png │ │ └── Scavengers_SpriteSheet.png.meta ├── Resources.meta ├── Resources │ ├── Audio.meta │ ├── Audio │ │ ├── scavengers_chop1.aif │ │ ├── scavengers_chop1.aif.meta │ │ ├── scavengers_chop2.aif │ │ ├── scavengers_chop2.aif.meta │ │ ├── scavengers_die.aif │ │ ├── scavengers_die.aif.meta │ │ ├── scavengers_enemy1.aif │ │ ├── scavengers_enemy1.aif.meta │ │ ├── scavengers_enemy2.aif │ │ ├── scavengers_enemy2.aif.meta │ │ ├── scavengers_footstep1.aif │ │ ├── scavengers_footstep1.aif.meta │ │ ├── scavengers_footstep2.aif │ │ ├── scavengers_footstep2.aif.meta │ │ ├── scavengers_fruit1.aif │ │ ├── scavengers_fruit1.aif.meta │ │ ├── scavengers_fruit2.aif │ │ ├── scavengers_fruit2.aif.meta │ │ ├── scavengers_soda1.aif │ │ ├── scavengers_soda1.aif.meta │ │ ├── scavengers_soda2.aif │ │ └── scavengers_soda2.aif.meta │ ├── Prefabs.meta │ └── Prefabs │ │ ├── Config.meta │ │ ├── Config │ │ ├── LoadLogicConfig.prefab │ │ ├── LoadLogicConfig.prefab.meta │ │ ├── LoadViewConfig.prefab │ │ └── LoadViewConfig.prefab.meta │ │ ├── PureEntity.meta │ │ ├── PureEntity │ │ ├── 21001_BaseUnit.prefab │ │ ├── 21001_BaseUnit.prefab.meta │ │ ├── 21011_BasePlayer.prefab │ │ ├── 21011_BasePlayer.prefab.meta │ │ ├── 21021_Enemy.prefab │ │ ├── 21021_Enemy.prefab.meta │ │ ├── 21022_EnemyRed.prefab │ │ ├── 21022_EnemyRed.prefab.meta │ │ ├── 21031_BaseWall.prefab │ │ ├── 21031_BaseWall.prefab.meta │ │ ├── 21032_Wal2.prefab │ │ ├── 21032_Wal2.prefab.meta │ │ ├── 21033_Wal3.prefab │ │ ├── 21033_Wal3.prefab.meta │ │ ├── 21034_Wal4.prefab │ │ ├── 21034_Wal4.prefab.meta │ │ ├── 21035_Wal4 1.prefab │ │ ├── 21035_Wal4 1.prefab.meta │ │ ├── 21036_Wal4 3.prefab │ │ ├── 21036_Wal4 3.prefab.meta │ │ ├── 21037_Wal4 2.prefab │ │ ├── 21037_Wal4 2.prefab.meta │ │ ├── 21041_BaseItem.prefab │ │ ├── 21041_BaseItem.prefab.meta │ │ ├── 21042_ItemFood2.prefab │ │ ├── 21042_ItemFood2.prefab.meta │ │ ├── 21051_Exit.prefab │ │ └── 21051_Exit.prefab.meta │ │ ├── View.meta │ │ └── View │ │ ├── 1011_Player.prefab │ │ ├── 1011_Player.prefab.meta │ │ ├── 1021_Enemy1.prefab │ │ ├── 1021_Enemy1.prefab.meta │ │ ├── 1022_Enemy2.prefab │ │ ├── 1022_Enemy2.prefab.meta │ │ ├── 1031_Wall1.prefab │ │ ├── 1031_Wall1.prefab.meta │ │ ├── 1032_Wall2.prefab │ │ ├── 1032_Wall2.prefab.meta │ │ ├── 1033_Wall3.prefab │ │ ├── 1033_Wall3.prefab.meta │ │ ├── 1034_Wall4.prefab │ │ ├── 1034_Wall4.prefab.meta │ │ ├── 1035_Wall5.prefab │ │ ├── 1035_Wall5.prefab.meta │ │ ├── 1036_Wall6.prefab │ │ ├── 1036_Wall6.prefab.meta │ │ ├── 1037_Wall7.prefab │ │ ├── 1037_Wall7.prefab.meta │ │ ├── 1038_Wall8.prefab │ │ ├── 1038_Wall8.prefab.meta │ │ ├── 1041_Food.prefab │ │ ├── 1041_Food.prefab.meta │ │ ├── 1042_Soda.prefab │ │ ├── 1042_Soda.prefab.meta │ │ ├── 1051_Exit.prefab │ │ ├── 1051_Exit.prefab.meta │ │ ├── Floor1.prefab │ │ ├── Floor1.prefab.meta │ │ ├── Floor2.prefab │ │ ├── Floor2.prefab.meta │ │ ├── Floor3.prefab │ │ ├── Floor3.prefab.meta │ │ ├── Floor4.prefab │ │ ├── Floor4.prefab.meta │ │ ├── Floor5.prefab │ │ ├── Floor5.prefab.meta │ │ ├── Floor6.prefab │ │ ├── Floor6.prefab.meta │ │ ├── Floor7.prefab │ │ ├── Floor7.prefab.meta │ │ ├── Floor8.prefab │ │ ├── Floor8.prefab.meta │ │ ├── OuterWall1.prefab │ │ ├── OuterWall1.prefab.meta │ │ ├── OuterWall2.prefab │ │ ├── OuterWall2.prefab.meta │ │ ├── OuterWall3.prefab │ │ └── OuterWall3.prefab.meta ├── SceneDependencyCache.meta ├── SceneDependencyCache │ ├── 7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings │ └── 7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings.meta ├── Scenes.meta ├── Scenes │ ├── Main.meta │ ├── Main.unity │ ├── Main.unity.meta │ ├── Main │ │ ├── LevelDynamic.unity │ │ ├── LevelDynamic.unity.meta │ │ ├── LevelStatic.unity │ │ └── LevelStatic.unity.meta │ ├── MainSettings.lighting │ └── MainSettings.lighting.meta ├── Scripts.meta └── Scripts │ ├── Common.Editor.meta │ ├── Common.Editor │ ├── Editor.meta │ └── Editor │ │ ├── EditorNone.cs │ │ └── EditorNone.cs.meta │ ├── Common.Model.meta │ ├── Common.Model │ ├── ECS.meta │ ├── ECS │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── Components.cs │ │ │ └── Components.cs.meta │ │ ├── Context.meta │ │ ├── Context │ │ │ ├── IContext.cs │ │ │ ├── IContext.cs.meta │ │ │ ├── IdGenerator.cs │ │ │ └── IdGenerator.cs.meta │ │ ├── Group.meta │ │ ├── Group │ │ │ ├── GameLogicGroup.cs │ │ │ └── GameLogicGroup.cs.meta │ │ ├── Interface.meta │ │ ├── Interface │ │ │ ├── Interfaces.cs │ │ │ └── Interfaces.cs.meta │ │ ├── System.meta │ │ └── System │ │ │ ├── SysAddTick.cs │ │ │ ├── SysAddTick.cs.meta │ │ │ ├── SysFrameEndCleanup.cs │ │ │ └── SysFrameEndCleanup.cs.meta │ ├── Extension.meta │ ├── Extension │ │ ├── EntityExt.cs │ │ ├── EntityExt.cs.meta │ │ ├── MathematicsExt.cs │ │ └── MathematicsExt.cs.meta │ ├── Util.meta │ └── Util │ │ ├── ViewFacade.cs │ │ └── ViewFacade.cs.meta │ ├── Common.View.meta │ ├── Common.View │ ├── ECS.meta │ ├── ECS │ │ ├── ECSWrap.meta │ │ ├── ECSWrap │ │ │ ├── EntityView.cs │ │ │ └── EntityView.cs.meta │ │ ├── Extension.meta │ │ ├── Extension │ │ │ ├── EcsViewExt.cs │ │ │ └── EcsViewExt.cs.meta │ │ ├── Interface.meta │ │ └── Interface │ │ │ ├── IAuthoring.cs │ │ │ └── IAuthoring.cs.meta │ ├── Framework.meta │ └── Framework │ │ ├── BaseManager.cs │ │ ├── BaseManager.cs.meta │ │ ├── BaseMonoManager.cs │ │ └── BaseMonoManager.cs.meta │ ├── Game.Editor.meta │ ├── Game.Editor │ ├── Editor.meta │ └── Editor │ │ ├── EditorNone.cs │ │ └── EditorNone.cs.meta │ ├── Game.Model.meta │ ├── Game.Model │ ├── Data.meta │ ├── Data │ │ ├── EGameEvent.cs │ │ ├── EGameEvent.cs.meta │ │ ├── Enums.cs │ │ ├── Enums.cs.meta │ │ ├── GameDefine.cs │ │ └── GameDefine.cs.meta │ ├── ECS.meta │ ├── ECS │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── Asset.cs │ │ │ ├── Asset.cs.meta │ │ │ ├── Config.cs │ │ │ ├── Config.cs.meta │ │ │ ├── Event.cs │ │ │ ├── Event.cs.meta │ │ │ ├── Tag.cs │ │ │ ├── Tag.cs.meta │ │ │ ├── Unit.cs │ │ │ └── Unit.cs.meta │ │ ├── Context.meta │ │ ├── Context │ │ │ ├── GameData.cs │ │ │ ├── GameData.cs.meta │ │ │ ├── MapData.cs │ │ │ └── MapData.cs.meta │ │ ├── System.meta │ │ └── System │ │ │ ├── AI.meta │ │ │ ├── AI │ │ │ ├── SysMoveEnemy.cs │ │ │ └── SysMoveEnemy.cs.meta │ │ │ ├── CleanUp.meta │ │ │ ├── CleanUp │ │ │ ├── SysUnitCheckDestroy.cs │ │ │ └── SysUnitCheckDestroy.cs.meta │ │ │ ├── Init.meta │ │ │ ├── Init │ │ │ ├── SysUnitAwake.cs │ │ │ ├── SysUnitAwake.cs.meta │ │ │ ├── SysUnitStart.cs │ │ │ └── SysUnitStart.cs.meta │ │ │ ├── Input.meta │ │ │ ├── Input │ │ │ ├── SysMovePlayer.cs │ │ │ └── SysMovePlayer.cs.meta │ │ │ ├── Item.meta │ │ │ ├── Item │ │ │ ├── SysCheckGameFailedEvent.cs │ │ │ ├── SysCheckGameFailedEvent.cs.meta │ │ │ ├── SysCheckGameState.cs │ │ │ ├── SysCheckGameState.cs.meta │ │ │ ├── SysCheckGameWinEvent.cs │ │ │ ├── SysCheckGameWinEvent.cs.meta │ │ │ ├── SysCheckItem.cs │ │ │ └── SysCheckItem.cs.meta │ │ │ ├── LoadLevel.meta │ │ │ ├── LoadLevel │ │ │ ├── SysInitLevelLogic.cs │ │ │ └── SysInitLevelLogic.cs.meta │ │ │ ├── Map.meta │ │ │ └── Map │ │ │ ├── SysGatherMapData.cs │ │ │ └── SysGatherMapData.cs.meta │ ├── InputLayer.meta │ ├── InputLayer │ │ ├── InputLayer.cs │ │ └── InputLayer.cs.meta │ ├── OutputLayer.meta │ ├── OutputLayer │ │ ├── OutputLayer.cs │ │ └── OutputLayer.cs.meta │ ├── _CodeGen.meta │ ├── _CodeGen │ │ ├── ContextsExt.cs │ │ └── ContextsExt.cs.meta │ ├── _Common.meta │ └── _Common │ │ ├── ECS.meta │ │ └── ECS │ │ ├── Context.meta │ │ └── Context │ │ ├── Contexts.cs │ │ ├── Contexts.cs.meta │ │ ├── GameContexts.cs │ │ ├── GameContexts.cs.meta │ │ ├── InputLayer.cs │ │ ├── InputLayer.cs.meta │ │ ├── OutputLayer.cs │ │ └── OutputLayer.cs.meta │ ├── Game.View.meta │ ├── Game.View │ ├── ECS.meta │ ├── ECS │ │ ├── Authoring.meta │ │ ├── Authoring │ │ │ ├── AuBaseUnit.cs │ │ │ ├── AuBaseUnit.cs.meta │ │ │ ├── AuLevelLogicConfig.cs │ │ │ ├── AuLevelLogicConfig.cs.meta │ │ │ ├── AuLevelViewConfig.cs │ │ │ └── AuLevelViewConfig.cs.meta │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── ComponentDefine.cs │ │ │ └── ComponentDefine.cs.meta │ │ ├── System.meta │ │ ├── System │ │ │ ├── Init.meta │ │ │ ├── Init │ │ │ │ ├── SysBindView.cs │ │ │ │ ├── SysBindView.cs.meta │ │ │ │ ├── SysInitLevelView.cs │ │ │ │ ├── SysInitLevelView.cs.meta │ │ │ │ ├── SysUnbindViewUnit.cs │ │ │ │ └── SysUnbindViewUnit.cs.meta │ │ │ ├── Update.meta │ │ │ └── Update │ │ │ │ ├── SysCheckMoveEvent.cs │ │ │ │ ├── SysCheckMoveEvent.cs.meta │ │ │ │ ├── SysEventTakeDamage.cs │ │ │ │ ├── SysEventTakeDamage.cs.meta │ │ │ │ ├── SysUpdateView.cs │ │ │ │ └── SysUpdateView.cs.meta │ │ ├── _CodeGen.meta │ │ └── _CodeGen │ │ │ ├── Authoring.meta │ │ │ ├── Authoring │ │ │ ├── AuUnitEnemy.cs │ │ │ ├── AuUnitEnemy.cs.meta │ │ │ ├── AuUnitExit.cs │ │ │ ├── AuUnitExit.cs.meta │ │ │ ├── AuUnitItem.cs │ │ │ ├── AuUnitItem.cs.meta │ │ │ ├── AuUnitPlayer.cs │ │ │ ├── AuUnitPlayer.cs.meta │ │ │ ├── AuUnitWall.cs │ │ │ └── AuUnitWall.cs.meta │ │ │ ├── Baker.meta │ │ │ └── Baker │ │ │ ├── BkUnitEnemy.cs │ │ │ ├── BkUnitEnemy.cs.meta │ │ │ ├── BkUnitExit.cs │ │ │ ├── BkUnitExit.cs.meta │ │ │ ├── BkUnitItem.cs │ │ │ ├── BkUnitItem.cs.meta │ │ │ ├── BkUnitPlayer.cs │ │ │ ├── BkUnitPlayer.cs.meta │ │ │ ├── BkUnitWall.cs │ │ │ └── BkUnitWall.cs.meta │ ├── MIsc.meta │ ├── MIsc │ │ ├── DestroyPlaySound.cs │ │ └── DestroyPlaySound.cs.meta │ ├── Manager.meta │ └── Manager │ │ ├── EntityViewManager.cs │ │ ├── EntityViewManager.cs.meta │ │ ├── GameManager.cs │ │ ├── GameManager.cs.meta │ │ ├── InputManager.cs │ │ ├── InputManager.cs.meta │ │ ├── Main.cs │ │ ├── Main.cs.meta │ │ ├── ResourceManager.cs │ │ ├── ResourceManager.cs.meta │ │ ├── SoundManager.cs │ │ ├── SoundManager.cs.meta │ │ ├── UIManager.cs │ │ └── UIManager.cs.meta │ ├── README.md │ └── README.md.meta ├── Documents └── Images │ └── Rougelike002.gif ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── UserSettings ├── EditorUserSettings.asset └── Layouts └── default-2022.dwlt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/OdinInspectorExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/OdinInspectorExt.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/OdinInspectorExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d46cb88586045158232e541124c5c1a 3 | timeCreated: 1648613507 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/TransformExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/TransformExt.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Ext/TransformExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e46a8eb5e054daab7fbc68ad98aeeb5 3 | timeCreated: 1626419982 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/GamesTan.Model.Ext.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/GamesTan.Model.Ext.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/GamesTan.Model.Ext.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/GamesTan.Model.Ext.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/BitUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/BitUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/BitUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf1ac99ab3cd4fa1abf6fe36077145e8 3 | timeCreated: 1626250581 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/EditorExtUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/EditorExtUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/EditorExtUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23a84cc79a61418baac17abdb23f5f49 3 | timeCreated: 1609391503 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/PathUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/PathUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e15b46838745a29ece4b827d7a06fe 3 | timeCreated: 1613447527 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/Singleton.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/Singleton.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/TransformUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/TransformUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model.Ext/Scripts/Runtime/Util/TransformUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db638d0d53cd49e6b0bb5d8289e9ff1c 3 | timeCreated: 1606306233 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EEvent.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EEvent.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventRegisterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventRegisterService.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventRegisterService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffc66fcbef1e78244afa3dc798252a6a 3 | timeCreated: 1577241933 -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtilImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtilImpl.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtilImpl.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/EventUtilImpl.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/GamesTan.Model.Event.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/GamesTan.Model.Event.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/GamesTan.Model.Event.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/GamesTan.Model.Event.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/IEventRegisterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/IEventRegisterService.cs -------------------------------------------------------------------------------- /Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/IEventRegisterService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Plugins/GamesTan/Model_Event/Scripts/Runtime/IEventRegisterService.cs.meta -------------------------------------------------------------------------------- /Assets/Res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res.meta -------------------------------------------------------------------------------- /Assets/Res/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy1Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy1Attack.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy1Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy1Attack.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy1Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy1Idle.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy1Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy1Idle.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy2Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy2Attack.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy2Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy2Attack.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy2Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy2Idle.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/Enemy2Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/Enemy2Idle.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerChop.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerChop.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerChop.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerChop.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerHit.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerHit.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerHit.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerHit.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerIdle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerIdle.anim -------------------------------------------------------------------------------- /Assets/Res/Animation/Animations/PlayerIdle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/Animations/PlayerIdle.anim.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Enemy1.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Enemy1.controller -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Enemy1.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Enemy1.controller.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Enemy2.overrideController: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Enemy2.overrideController -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Enemy2.overrideController.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Enemy2.overrideController.meta -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Player.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Player.controller -------------------------------------------------------------------------------- /Assets/Res/Animation/AnimatorControllers/Player.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Animation/AnimatorControllers/Player.controller.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers/AudioManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/AudioManager.prefab -------------------------------------------------------------------------------- /Assets/Res/Controllers/AudioManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/AudioManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers/GameManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/GameManager.prefab -------------------------------------------------------------------------------- /Assets/Res/Controllers/GameManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/GameManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers/InputManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/InputManager.prefab -------------------------------------------------------------------------------- /Assets/Res/Controllers/InputManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/InputManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers/ResourceManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/ResourceManager.prefab -------------------------------------------------------------------------------- /Assets/Res/Controllers/ResourceManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/ResourceManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Controllers/UIManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/UIManager.prefab -------------------------------------------------------------------------------- /Assets/Res/Controllers/UIManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Controllers/UIManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Fonts.meta -------------------------------------------------------------------------------- /Assets/Res/Fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Fonts/OFL.txt -------------------------------------------------------------------------------- /Assets/Res/Fonts/OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Fonts/OFL.txt.meta -------------------------------------------------------------------------------- /Assets/Res/Fonts/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Fonts/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /Assets/Res/Fonts/PressStart2P-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Fonts/PressStart2P-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/Res/Music.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Music.meta -------------------------------------------------------------------------------- /Assets/Res/Music/scavengers_music.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Music/scavengers_music.aif -------------------------------------------------------------------------------- /Assets/Res/Music/scavengers_music.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Music/scavengers_music.aif.meta -------------------------------------------------------------------------------- /Assets/Res/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Res/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Sprites.meta -------------------------------------------------------------------------------- /Assets/Res/Sprites/Scavengers_SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Sprites/Scavengers_SpriteSheet.png -------------------------------------------------------------------------------- /Assets/Res/Sprites/Scavengers_SpriteSheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Res/Sprites/Scavengers_SpriteSheet.png.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_chop1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_chop1.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_chop1.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_chop1.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_chop2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_chop2.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_chop2.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_chop2.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_die.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_die.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_die.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_die.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_enemy1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_enemy1.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_enemy1.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_enemy1.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_enemy2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_enemy2.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_enemy2.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_enemy2.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_footstep1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_footstep1.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_footstep1.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_footstep1.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_footstep2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_footstep2.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_footstep2.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_footstep2.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_fruit1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_fruit1.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_fruit1.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_fruit1.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_fruit2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_fruit2.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_fruit2.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_fruit2.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_soda1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_soda1.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_soda1.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_soda1.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_soda2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_soda2.aif -------------------------------------------------------------------------------- /Assets/Resources/Audio/scavengers_soda2.aif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Audio/scavengers_soda2.aif.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/Config.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Config/LoadLogicConfig.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/Config/LoadLogicConfig.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Config/LoadLogicConfig.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/Config/LoadLogicConfig.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Config/LoadViewConfig.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/Config/LoadViewConfig.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Config/LoadViewConfig.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/Config/LoadViewConfig.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21001_BaseUnit.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21001_BaseUnit.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21001_BaseUnit.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21001_BaseUnit.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21011_BasePlayer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21011_BasePlayer.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21011_BasePlayer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21011_BasePlayer.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21021_Enemy.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21021_Enemy.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21021_Enemy.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21021_Enemy.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21022_EnemyRed.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21022_EnemyRed.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21022_EnemyRed.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21022_EnemyRed.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21031_BaseWall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21031_BaseWall.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21031_BaseWall.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21031_BaseWall.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21032_Wal2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21032_Wal2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21032_Wal2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21032_Wal2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21033_Wal3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21033_Wal3.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21033_Wal3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21033_Wal3.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21034_Wal4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21034_Wal4.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21034_Wal4.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21034_Wal4.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21035_Wal4 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21035_Wal4 1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21035_Wal4 1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21035_Wal4 1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21036_Wal4 3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21036_Wal4 3.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21036_Wal4 3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21036_Wal4 3.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21037_Wal4 2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21037_Wal4 2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21037_Wal4 2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21037_Wal4 2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21041_BaseItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21041_BaseItem.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21041_BaseItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21041_BaseItem.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21042_ItemFood2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21042_ItemFood2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21042_ItemFood2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21042_ItemFood2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21051_Exit.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21051_Exit.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/PureEntity/21051_Exit.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/PureEntity/21051_Exit.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1011_Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1011_Player.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1011_Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1011_Player.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1021_Enemy1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1021_Enemy1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1021_Enemy1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1021_Enemy1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1022_Enemy2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1022_Enemy2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1022_Enemy2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1022_Enemy2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1031_Wall1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1031_Wall1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1031_Wall1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1031_Wall1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1032_Wall2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1032_Wall2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1032_Wall2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1032_Wall2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1033_Wall3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1033_Wall3.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1033_Wall3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1033_Wall3.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1034_Wall4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1034_Wall4.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1034_Wall4.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1034_Wall4.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1035_Wall5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1035_Wall5.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1035_Wall5.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1035_Wall5.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1036_Wall6.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1036_Wall6.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1036_Wall6.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1036_Wall6.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1037_Wall7.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1037_Wall7.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1037_Wall7.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1037_Wall7.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1038_Wall8.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1038_Wall8.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1038_Wall8.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1038_Wall8.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1041_Food.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1041_Food.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1041_Food.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1041_Food.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1042_Soda.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1042_Soda.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1042_Soda.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1042_Soda.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1051_Exit.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1051_Exit.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/1051_Exit.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/1051_Exit.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor3.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor3.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor4.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor4.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor4.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor5.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor5.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor5.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor6.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor6.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor6.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor6.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor7.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor7.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor7.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor7.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor8.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor8.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/Floor8.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/Floor8.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall3.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/View/OuterWall3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Resources/Prefabs/View/OuterWall3.prefab.meta -------------------------------------------------------------------------------- /Assets/SceneDependencyCache.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/SceneDependencyCache.meta -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/SceneDependencyCache/7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/SceneDependencyCache/7d16841e9a4947a86c14951a605a8668.sceneWithBuildSettings.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main/LevelDynamic.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main/LevelDynamic.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main/LevelDynamic.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main/LevelDynamic.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main/LevelStatic.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main/LevelStatic.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main/LevelStatic.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/Main/LevelStatic.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/MainSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/MainSettings.lighting -------------------------------------------------------------------------------- /Assets/Scenes/MainSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scenes/MainSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common.Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common.Editor/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Editor/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common.Editor/Editor/EditorNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Editor/Editor/EditorNone.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Editor/Editor/EditorNone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b093338a815a3e4e9b541c5a6765ba3 3 | timeCreated: 1669305171 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a9d25a81ccf4964b0781c688e7df1c7 3 | timeCreated: 1669533647 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dae8f8662900470ab74da2e1de7b142c 3 | timeCreated: 1669533716 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf3952a7b8a54377a3ba8177f03f43cb 3 | timeCreated: 1669528154 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Component/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Component/Components.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Component/Components.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7190b41bdd8142a2a253e1dcdb552d98 3 | timeCreated: 1669528099 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Context.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29061fbc63c54286859dd4dca5bbbd49 3 | timeCreated: 1669533655 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Context/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Context/IContext.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Context/IContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Context/IContext.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Context/IdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Context/IdGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Context/IdGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa47e14a4744afa8b0a3e2b335d23f5 3 | timeCreated: 1669532507 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Group.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42a8229a03064fd99d74c99a312eee2b 3 | timeCreated: 1669389217 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Group/GameLogicGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Group/GameLogicGroup.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Group/GameLogicGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f61397fffe44b69920cfc5b8c2c3305 3 | timeCreated: 1669389241 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5b7472c50ff4a4a8e27f016b4843aee 3 | timeCreated: 1669388574 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Interface/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/Interface/Interfaces.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/Interface/Interfaces.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64c96ad64b464258ba987feaf4699d4d 3 | timeCreated: 1669454700 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0f8cdfa4ad24b31ad36daf9a42101ac 3 | timeCreated: 1669558300 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/System/SysAddTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/System/SysAddTick.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/System/SysAddTick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bea62e20492041a4a31d43cf8905e6a7 3 | timeCreated: 1669557663 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/System/SysFrameEndCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/ECS/System/SysFrameEndCleanup.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/ECS/System/SysFrameEndCleanup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0afc664bebda4c1f853f21166f258676 3 | timeCreated: 1669558291 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Extension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eea893abd9704ffe8698baea9c9d3fa3 3 | timeCreated: 1669388626 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Extension/EntityExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/Extension/EntityExt.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Extension/EntityExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 307150512e374afaa7497c2894c9b5bb 3 | timeCreated: 1669388698 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Extension/MathematicsExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/Extension/MathematicsExt.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Extension/MathematicsExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e828ebea74c74e739e0599f604daabf3 3 | timeCreated: 1669387814 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ee8f2dcf5f34e609730ad16c50a05ee 3 | timeCreated: 1669388615 -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Util/ViewFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.Model/Util/ViewFacade.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.Model/Util/ViewFacade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c038b341b1a247a685dc98987e52ec1b 3 | timeCreated: 1669529276 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82ed21d5d3704a59a7b4fa74cfc4684a 3 | timeCreated: 1669535309 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98827bf2e9534ed6984a25b2ea962fc5 3 | timeCreated: 1669535338 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/ECSWrap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 037f4f7f4810424cb0c16fd3e89dab41 3 | timeCreated: 1669478470 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/ECSWrap/EntityView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.View/ECS/ECSWrap/EntityView.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/ECSWrap/EntityView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf2369d39c1c49a2a80e41088e4f3e50 3 | timeCreated: 1669478491 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Extension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e65cd777b97a4dcc841a02da50cb3fd0 3 | timeCreated: 1669388505 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Extension/EcsViewExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.View/ECS/Extension/EcsViewExt.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Extension/EcsViewExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74d8396da45494db1a8f41094a89a70 3 | timeCreated: 1669388434 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46dfa51717b94524bd19db49ebaab63c 3 | timeCreated: 1669388491 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Interface/IAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.View/ECS/Interface/IAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/ECS/Interface/IAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 211c1de56e514f6ca24fed7ad768d589 3 | timeCreated: 1669387842 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c749e9e3a84addb0dd11e660d8c46e 3 | timeCreated: 1669531045 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/Framework/BaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.View/Framework/BaseManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/Framework/BaseManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e34569a9e30244bf83ef6738bf324cf2 3 | timeCreated: 1669531099 -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/Framework/BaseMonoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Common.View/Framework/BaseMonoManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common.View/Framework/BaseMonoManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 399aa3fb58524686b3a448264a87fa77 3 | timeCreated: 1669531030 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Editor/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Editor/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Editor/Editor/EditorNone.cs: -------------------------------------------------------------------------------- 1 | namespace Editor { 2 | 3 | } -------------------------------------------------------------------------------- /Assets/Scripts/Game.Editor/Editor/EditorNone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1df8150cfa0d4a9b8c850007a0ef311f 3 | timeCreated: 1669305171 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6345bb98db8e4d0891ca9f2c4e06cb24 3 | timeCreated: 1669303867 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/EGameEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/Data/EGameEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/EGameEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea004e6a549b40d3ac99441baa70370e 3 | timeCreated: 1669543036 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/Data/Enums.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/Enums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bba46428d1ad49909dc1e81fc43b7bd4 3 | timeCreated: 1669305049 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/GameDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/Data/GameDefine.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/Data/GameDefine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/Data/GameDefine.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1727ba11ad0245009d2e3ab4a6ff6d8d 3 | timeCreated: 1669043890 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Component/Asset.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Asset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f46fbbecf910487b98cc879ae6630590 3 | timeCreated: 1669557201 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Component/Config.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Config.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92b62b88c1dd434a9f2c57b43d239e21 3 | timeCreated: 1669557178 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Component/Event.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Event.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e46f344a2bc41bb91ee13fbafda44cf 3 | timeCreated: 1669557261 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Component/Tag.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Tag.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25b7123a44994c91b4c7eb708c678bb3 3 | timeCreated: 1669557995 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Component/Unit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Component/Unit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08602a75df054a86b1fe59cd49f2d5c8 3 | timeCreated: 1669454602 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Context.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 757b90330cd04335ab22b703eb7a746c 3 | timeCreated: 1669044026 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Context/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Context/GameData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Context/GameData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c26723af418e44dfaba895efbb5a794f 3 | timeCreated: 1669303037 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Context/MapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/Context/MapData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/Context/MapData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 175c6eb88a0e4792826922cd8051c184 3 | timeCreated: 1669131277 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5248d9b5bfb646c99c74bf81e0fa7ddb 3 | timeCreated: 1669043944 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/AI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff8c2e4c413448dcaf9425d3a0c9662d 3 | timeCreated: 1669560414 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/AI/SysMoveEnemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/AI/SysMoveEnemy.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/AI/SysMoveEnemy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6b7e2a4729346f7a0398c75a3b454f8 3 | timeCreated: 1669556848 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/CleanUp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5385ce388e944ffab5e0d0650a7aa075 3 | timeCreated: 1669522128 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/CleanUp/SysUnitCheckDestroy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/CleanUp/SysUnitCheckDestroy.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/CleanUp/SysUnitCheckDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fbe83776bd2456991ce5f7c62c61e9c 3 | timeCreated: 1669522161 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Init.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2aab5f4e83b4c9895845508fd7ea842 3 | timeCreated: 1669530494 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Init/SysUnitAwake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Init/SysUnitAwake.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Init/SysUnitAwake.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Init/SysUnitAwake.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Init/SysUnitStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Init/SysUnitStart.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Init/SysUnitStart.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4043b068461b493688a21b2af22f6bec 3 | timeCreated: 1669534124 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b26aa44336a74fe9996cc52ef295690b 3 | timeCreated: 1669560204 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Input/SysMovePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Input/SysMovePlayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Input/SysMovePlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c91505a8e574b5c904209a446f41d1b 3 | timeCreated: 1669544559 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f27c2246ffae496ab62890acf3684f0e 3 | timeCreated: 1669560390 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameFailedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameFailedEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameFailedEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b227c210b6d846858716544e49d8c7e5 3 | timeCreated: 1669644287 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameState.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35457529bae247508b08b624498ce6bd 3 | timeCreated: 1669561280 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameWinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameWinEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameWinEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Item/SysCheckGameWinEvent.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Item/SysCheckItem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Item/SysCheckItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc205550fb3842eba4bcc04ace4eb820 3 | timeCreated: 1669560368 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/LoadLevel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec47e1f8fa41463881ee41a4ad0ae041 3 | timeCreated: 1669389512 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/LoadLevel/SysInitLevelLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/LoadLevel/SysInitLevelLogic.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/LoadLevel/SysInitLevelLogic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0f4b4dcbf6b4114bafdba0e3faba585 3 | timeCreated: 1669447960 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Map.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bba7ee0092fd48fea4c70af8a29ac313 3 | timeCreated: 1669560458 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Map/SysGatherMapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/ECS/System/Map/SysGatherMapData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/ECS/System/Map/SysGatherMapData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 285353e16293413fb7c726a392f9da69 3 | timeCreated: 1669556538 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/InputLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50d7a4cc2534bc393d2589f13142a17 3 | timeCreated: 1669305002 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/InputLayer/InputLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/InputLayer/InputLayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/InputLayer/InputLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ee6522c9b9f4447bddca7065be0476b 3 | timeCreated: 1669303787 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/OutputLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fffa7764557e4699a46c3d7bd1881b14 3 | timeCreated: 1669305009 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/OutputLayer/OutputLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/OutputLayer/OutputLayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/OutputLayer/OutputLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa03fae17b87471eb02c76cc210c395f 3 | timeCreated: 1669304968 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_CodeGen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352bfd0490ae4546aad54be969bee15b 3 | timeCreated: 1669302900 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_CodeGen/ContextsExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/_CodeGen/ContextsExt.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_CodeGen/ContextsExt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f45b87d67a7747d9ae767a53d3f50999 3 | timeCreated: 1669302916 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb169e989d4b43fabce0fc14021940a7 3 | timeCreated: 1669388550 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86f3c63019854f0fa3145b6db29d1572 3 | timeCreated: 1669388751 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ab277dd694e4027986f9ece3a69d015 3 | timeCreated: 1669532637 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/Contexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/_Common/ECS/Context/Contexts.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/Contexts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49d7a57282c244538460a204740d55e6 3 | timeCreated: 1669302858 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/GameContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/_Common/ECS/Context/GameContexts.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/GameContexts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5523ba1a73c9487396008cd43ba579aa 3 | timeCreated: 1669302833 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/InputLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/_Common/ECS/Context/InputLayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/InputLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c8df007c6e54452b170d67d66e85c4d 3 | timeCreated: 1669303799 -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/OutputLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.Model/_Common/ECS/Context/OutputLayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.Model/_Common/ECS/Context/OutputLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c99204ca13854d608767a77b06a0effa 3 | timeCreated: 1669304473 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 673fafb8250e42288342e130110b47de 3 | timeCreated: 1669388238 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b2a6d9c768046d69d9834f62e3f9a66 3 | timeCreated: 1669043904 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuBaseUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/Authoring/AuBaseUnit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuBaseUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e21a3023f17e4653b2e1047da939f0d8 3 | timeCreated: 1669473698 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuLevelLogicConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/Authoring/AuLevelLogicConfig.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuLevelLogicConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 534e405fada84ecd8a6750b912744045 3 | timeCreated: 1669472130 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuLevelViewConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/Authoring/AuLevelViewConfig.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Authoring/AuLevelViewConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/Authoring/AuLevelViewConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3022bbdf939447f78ce188ff12996dc2 3 | timeCreated: 1669470373 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Component/ComponentDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/Component/ComponentDefine.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/Component/ComponentDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 663dccbec40c40b8a5c5efd0878093e2 3 | timeCreated: 1669387946 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2712b240be3c47b3905482e0269fdda1 3 | timeCreated: 1669469041 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aea2f005dd3d4b5ab9064dc795407d9f 3 | timeCreated: 1669530235 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysBindView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Init/SysBindView.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysBindView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df56b96256594855875cf5d1c4465db6 3 | timeCreated: 1669469126 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysInitLevelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Init/SysInitLevelView.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysInitLevelView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb51cfc28d114022a6de3c146b01a891 3 | timeCreated: 1669043999 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysUnbindViewUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Init/SysUnbindViewUnit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Init/SysUnbindViewUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98aa6ece5cc54239923646e15fa3825c 3 | timeCreated: 1669529181 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c911957581b44176a4f3186226c4b383 3 | timeCreated: 1669530503 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysCheckMoveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Update/SysCheckMoveEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysCheckMoveEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0375a820683a4b19b1444a477f59a350 3 | timeCreated: 1669821120 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysEventTakeDamage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Update/SysEventTakeDamage.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysEventTakeDamage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4236126456243949f4f3a2ad878d9fb 3 | timeCreated: 1669821115 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysUpdateView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/System/Update/SysUpdateView.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/System/Update/SysUpdateView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb6c818ff4a24082b58321bcb3eb539c 3 | timeCreated: 1669545656 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4add13f823ca4841805cbf2a12d5b58f 3 | timeCreated: 1669388106 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9bd41ea2d474ecebcf1436d6dea423d 3 | timeCreated: 1669519450 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitEnemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitEnemy.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitEnemy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d2e14f80a7430699e46bfa3c951c78 3 | timeCreated: 1669474370 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitExit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitExit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f5a52e3e7044c109da5695b27033b81 3 | timeCreated: 1669646437 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitItem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87a7fe02a29740c9b987df52092425a1 3 | timeCreated: 1669474364 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitPlayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ccd782e97e242bbad7ca8c11cdb20f3 3 | timeCreated: 1669474360 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitWall.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Authoring/AuUnitWall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 146e50d3d84c4c01874cc9ffd9f8ba48 3 | timeCreated: 1669474367 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4d3f0f56224e3f918294e1b2715f26 3 | timeCreated: 1669518552 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitEnemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitEnemy.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitEnemy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87b1eed3c1544c0eb2749f877d601937 3 | timeCreated: 1669519738 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitExit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitExit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9af955edb09b407198d404065148280d 3 | timeCreated: 1669646488 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitItem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e23613d41d4b479baffcf983d976c945 3 | timeCreated: 1669519746 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitPlayer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fac3b875af84fd6b63d8433e9322763 3 | timeCreated: 1669474258 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitWall.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/ECS/_CodeGen/Baker/BkUnitWall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55744780fa0e4248b1bffaad427fc806 3 | timeCreated: 1669519742 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/MIsc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/MIsc.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/MIsc/DestroyPlaySound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/MIsc/DestroyPlaySound.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/MIsc/DestroyPlaySound.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/MIsc/DestroyPlaySound.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46e7497121f54809b46408a6f3dc18df 3 | timeCreated: 1669305140 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/EntityViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/EntityViewManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/EntityViewManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a99f746db63d412695fc2ea1827b2e81 3 | timeCreated: 1669529768 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/GameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/GameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/GameManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/InputManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/InputManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/InputManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/Main.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56c8ef6edfc349fbbfa03a54235fa34d 3 | timeCreated: 1670047995 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/ResourceManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/ResourceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83de033e329a4a91a8f0f68edb559a11 3 | timeCreated: 1669478018 -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/SoundManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/SoundManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/SoundManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/Game.View/Manager/UIManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game.View/Manager/UIManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8a51a59208340acae2e87e3dd20d334 3 | timeCreated: 1669540548 -------------------------------------------------------------------------------- /Assets/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/README.md -------------------------------------------------------------------------------- /Assets/Scripts/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Assets/Scripts/README.md.meta -------------------------------------------------------------------------------- /Documents/Images/Rougelike002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Documents/Images/Rougelike002.gif -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/Layouts/default-2022.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiepengTan/DOTS_Rougelike/HEAD/UserSettings/Layouts/default-2022.dwlt --------------------------------------------------------------------------------