Skip to content

Commit

Permalink
Merge pull request LochNeffMonster#11 from mentatzoe/master
Browse files Browse the repository at this point in the history
Bug fixing
  • Loading branch information
Amarcolina authored and Amarcolina committed Nov 24, 2013
2 parents a4ba419 + 07f8a06 commit 906dc14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DinoSwarms.as
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ package
[0, .2, 80, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, .08, .05, 0, 0, 40],
[0, .08, .05, 0, 0, 40, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0]]);
biomeLayer.setModel(biomeModel, Tile.DIRT, Tile.GRASS);
Expand Down Expand Up @@ -82,13 +82,13 @@ package
_generator.addGenerationLayer(smoothingLayer);

//Trees UNDER CONSTRUCTION
var treeLayer:MarkovGenerationLayer = new MarkovGenerationLayer();
var treeLayer:MarkovGenerationLayer = new MarkovGenerationLayer(true);
treeLayer.setMinMaxResolution(1, 1);
var treeModel:MarkovModel = new MarkovModel([[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, .1, 0, 0],
[0, 0, 0, 0, -5, .1, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0]]);
Expand Down

0 comments on commit 906dc14

Please sign in to comment.