├── .vs └── Bacteria │ └── v15 │ └── .suo ├── Assembly-CSharp.csproj ├── Assets ├── AI.cs ├── AI.cs.meta ├── Boid.cs ├── Boid.cs.meta ├── Genome.cs ├── Genome.cs.meta ├── Layer.cs ├── Layer.cs.meta ├── MainController.cs ├── MainController.cs.meta ├── Material2D.physicsMaterial2D ├── Material2D.physicsMaterial2D.meta ├── NN.cs ├── NN.cs.meta ├── Resources.meta ├── Resources │ ├── m1.prefab │ ├── m1.prefab.meta │ ├── m2.prefab │ └── m2.prefab.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── food.png ├── food.png.meta ├── food.prefab ├── food.prefab.meta ├── m1.png ├── m1.png.meta ├── square.png ├── square.png.meta ├── wall.prefab └── wall.prefab.meta ├── Bacteria.sln ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.vs/Bacteria/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/.vs/Bacteria/v15/.suo -------------------------------------------------------------------------------- /Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /Assets/AI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/AI.cs -------------------------------------------------------------------------------- /Assets/AI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/AI.cs.meta -------------------------------------------------------------------------------- /Assets/Boid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Boid.cs -------------------------------------------------------------------------------- /Assets/Boid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Boid.cs.meta -------------------------------------------------------------------------------- /Assets/Genome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Genome.cs -------------------------------------------------------------------------------- /Assets/Genome.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Genome.cs.meta -------------------------------------------------------------------------------- /Assets/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Layer.cs -------------------------------------------------------------------------------- /Assets/Layer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Layer.cs.meta -------------------------------------------------------------------------------- /Assets/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/MainController.cs -------------------------------------------------------------------------------- /Assets/MainController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/MainController.cs.meta -------------------------------------------------------------------------------- /Assets/Material2D.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Material2D.physicsMaterial2D -------------------------------------------------------------------------------- /Assets/Material2D.physicsMaterial2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Material2D.physicsMaterial2D.meta -------------------------------------------------------------------------------- /Assets/NN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/NN.cs -------------------------------------------------------------------------------- /Assets/NN.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/NN.cs.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/m1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Resources/m1.prefab -------------------------------------------------------------------------------- /Assets/Resources/m1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Resources/m1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/m2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Resources/m2.prefab -------------------------------------------------------------------------------- /Assets/Resources/m2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Resources/m2.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/food.png -------------------------------------------------------------------------------- /Assets/food.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/food.png.meta -------------------------------------------------------------------------------- /Assets/food.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/food.prefab -------------------------------------------------------------------------------- /Assets/food.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/food.prefab.meta -------------------------------------------------------------------------------- /Assets/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/m1.png -------------------------------------------------------------------------------- /Assets/m1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/m1.png.meta -------------------------------------------------------------------------------- /Assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/square.png -------------------------------------------------------------------------------- /Assets/square.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/square.png.meta -------------------------------------------------------------------------------- /Assets/wall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/wall.prefab -------------------------------------------------------------------------------- /Assets/wall.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Assets/wall.prefab.meta -------------------------------------------------------------------------------- /Bacteria.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Bacteria.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemOnigiri/NaturalSelectionUnity/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NaturalSelectionUnity --------------------------------------------------------------------------------