Skip to content

Commit

Permalink
Update example defaults in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
deathcap committed Dec 1, 2013
1 parent cf312ce commit 586908e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Returns a new game instance. `options` defaults to:
{
texturePath: './textures/',
generate: function(x,y,z) {
return x*x+y*y+z*z <= 20*20 ? 1 : 0 // sphere world
return x*x+y*y+z*z <= 15*15 ? 1 : 0 // sphere world
},
materials: [['grass', 'dirt', 'grass_dirt'], 'brick', 'dirt'],
materialFlatColor: false,
Expand All @@ -37,7 +37,7 @@ Returns a new game instance. `options` defaults to:
lightsDisabled: false,
fogDisabled: false,
generateChunks: true,
mesher: voxel.meshers.greedy,
mesher: voxel.meshers.culled,
playerHeight: 1.62
}
```
Expand Down

0 comments on commit 586908e

Please sign in to comment.