voxel-simplex-terrain

0.0.3 • Public • Published

voxel-simplex-terrain

generate voxel terrain using simplex noise

uses the awesome simplex-noise library from @jwagner

this is designed to work out of the box with voxel-engine

install

npm install voxel-simplex-terrain

api

var terrain = require('voxel-simplex-terrain')
 
// initialize your noise, returns a function
var chunkSize = 32
var chunkDistance = 2
var generator = terrain(chunkDistance, chunkSize)
 
// the returned function is for getting specific chunks
var chunkData = generator([0,0,0], [32,32,32])

chunk data is returned in the format of the voxel module

license

BSD

/voxel-simplex-terrain/

    Package Sidebar

    Install

    npm i voxel-simplex-terrain

    Weekly Downloads

    1

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • maxogden