working eyes!

This commit is contained in:
MaxRobinsonTheGreat
2020-08-11 15:25:20 -06:00
parent 6003686a13
commit 3d3c6f8558
11 changed files with 233 additions and 50 deletions

View File

@@ -54,9 +54,10 @@ class WorldEnvironment extends Environment{
OriginOfLife() {
var center = this.grid_map.getCenter();
var org = new Organism(center[0], center[1], this);
org.addCell(CellTypes.eye, 0, 0);
org.addCell(CellTypes.mouth, -1, -1);
org.addCell(CellTypes.mover, 1, 1);
org.addCell(CellTypes.mouth, 0, 0);
// org.addCell(CellTypes.eye, 2, 2);
org.addCell(CellTypes.producer, -1, -1);
org.addCell(CellTypes.producer, 1, 1);
this.addOrganism(org);
}