├── .gitignore ├── Assets ├── Demo.meta ├── Demo │ ├── Radar.meta │ └── Radar │ │ ├── Demo.unity │ │ ├── Demo.unity.meta │ │ ├── Grid.png │ │ ├── Grid.png.meta │ │ ├── Mine.prefab │ │ ├── Mine.prefab.meta │ │ ├── MinesManager.cs │ │ ├── MinesManager.cs.meta │ │ ├── Tank.cs │ │ ├── Tank.cs.meta │ │ ├── Tank.prefab │ │ ├── Tank.prefab.meta │ │ ├── TanksManager.cs │ │ ├── TanksManager.cs.meta │ │ ├── UIActions.cs │ │ ├── UIActions.cs.meta │ │ ├── mine.mat │ │ ├── mine.mat.meta │ │ ├── plane.mat │ │ ├── plane.mat.meta │ │ ├── tank.mat │ │ └── tank.mat.meta ├── EasyAIFrame.meta └── EasyAIFrame │ ├── EasyAIFrame使用说明.docx │ ├── EasyAIFrame使用说明.docx.meta │ ├── Editor.meta │ ├── Editor │ ├── EvolutionEditor.cs │ ├── EvolutionEditor.cs.meta │ ├── EvolutionWindow.cs │ └── EvolutionWindow.cs.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── AIManager.prefab │ └── AIManager.prefab.meta │ ├── Scripts.meta │ └── Scripts │ ├── Agent.cs │ ├── Agent.cs.meta │ ├── Entity.cs │ ├── Entity.cs.meta │ ├── Evolution.meta │ ├── Evolution │ ├── EvolutionManager.cs │ ├── EvolutionManager.cs.meta │ ├── GeneticAlgorithm.GeneticOpetation.cs │ ├── GeneticAlgorithm.GeneticOpetation.cs.meta │ ├── GeneticAlgorithm.main.cs │ ├── GeneticAlgorithm.main.cs.meta │ ├── Genotype.cs │ └── Genotype.cs.meta │ ├── NeuralNetworks.meta │ ├── NeuralNetworks │ ├── NeuralLayer.cs │ ├── NeuralLayer.cs.meta │ ├── NeuralNetwork.cs │ └── NeuralNetwork.cs.meta │ ├── Tools.meta │ └── Tools │ ├── MathHelper.cs │ ├── MathHelper.cs.meta │ ├── SingletonMono.cs │ └── SingletonMono.cs.meta ├── Images ├── demo.png └── intro │ ├── 图片1.png │ ├── 图片10.png │ ├── 图片11.png │ ├── 图片2.png │ ├── 图片3.png │ ├── 图片4.png │ ├── 图片5.png │ ├── 图片6.png │ ├── 图片7.png │ ├── 图片8.png │ └── 图片9.png ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Demo.unity -------------------------------------------------------------------------------- /Assets/Demo/Radar/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Grid.png -------------------------------------------------------------------------------- /Assets/Demo/Radar/Grid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Grid.png.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/Mine.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Mine.prefab -------------------------------------------------------------------------------- /Assets/Demo/Radar/Mine.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Mine.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/MinesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/MinesManager.cs -------------------------------------------------------------------------------- /Assets/Demo/Radar/MinesManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/MinesManager.cs.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/Tank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Tank.cs -------------------------------------------------------------------------------- /Assets/Demo/Radar/Tank.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Tank.cs.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/Tank.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Tank.prefab -------------------------------------------------------------------------------- /Assets/Demo/Radar/Tank.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/Tank.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/TanksManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/TanksManager.cs -------------------------------------------------------------------------------- /Assets/Demo/Radar/TanksManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/TanksManager.cs.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/UIActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/UIActions.cs -------------------------------------------------------------------------------- /Assets/Demo/Radar/UIActions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/UIActions.cs.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/mine.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/mine.mat -------------------------------------------------------------------------------- /Assets/Demo/Radar/mine.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/mine.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/plane.mat -------------------------------------------------------------------------------- /Assets/Demo/Radar/plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/plane.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Radar/tank.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/tank.mat -------------------------------------------------------------------------------- /Assets/Demo/Radar/tank.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/Demo/Radar/tank.mat.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/EasyAIFrame使用说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/EasyAIFrame使用说明.docx -------------------------------------------------------------------------------- /Assets/EasyAIFrame/EasyAIFrame使用说明.docx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/EasyAIFrame使用说明.docx.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Editor.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Editor/EvolutionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Editor/EvolutionEditor.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Editor/EvolutionEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Editor/EvolutionEditor.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Editor/EvolutionWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Editor/EvolutionWindow.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Editor/EvolutionWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Editor/EvolutionWindow.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Prefabs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Prefabs/AIManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Prefabs/AIManager.prefab -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Prefabs/AIManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Prefabs/AIManager.prefab.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Agent.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Agent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Agent.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Entity.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Entity.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/EvolutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/EvolutionManager.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/EvolutionManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/EvolutionManager.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.GeneticOpetation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.GeneticOpetation.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.GeneticOpetation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.GeneticOpetation.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.main.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.main.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/GeneticAlgorithm.main.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/Genotype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/Genotype.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Evolution/Genotype.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Evolution/Genotype.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/NeuralNetworks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/NeuralNetworks.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralLayer.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralLayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralLayer.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralNetwork.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralNetwork.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/NeuralNetworks/NeuralNetwork.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Tools.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Tools/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Tools/MathHelper.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Tools/MathHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Tools/MathHelper.cs.meta -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Tools/SingletonMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Tools/SingletonMono.cs -------------------------------------------------------------------------------- /Assets/EasyAIFrame/Scripts/Tools/SingletonMono.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Assets/EasyAIFrame/Scripts/Tools/SingletonMono.cs.meta -------------------------------------------------------------------------------- /Images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/demo.png -------------------------------------------------------------------------------- /Images/intro/图片1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片1.png -------------------------------------------------------------------------------- /Images/intro/图片10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片10.png -------------------------------------------------------------------------------- /Images/intro/图片11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片11.png -------------------------------------------------------------------------------- /Images/intro/图片2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片2.png -------------------------------------------------------------------------------- /Images/intro/图片3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片3.png -------------------------------------------------------------------------------- /Images/intro/图片4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片4.png -------------------------------------------------------------------------------- /Images/intro/图片5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片5.png -------------------------------------------------------------------------------- /Images/intro/图片6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片6.png -------------------------------------------------------------------------------- /Images/intro/图片7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片7.png -------------------------------------------------------------------------------- /Images/intro/图片8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片8.png -------------------------------------------------------------------------------- /Images/intro/图片9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/Images/intro/图片9.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.2.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenZhouXieZhiFeng/TheAncestralNerve/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------