voxel-heightmap-terrain

0.0.1 • Public • Published

voxel-heightmap-terrain

generate voxel terrain using a png heightmap

example

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

heightmaps

The generator uses heightmaps in JSON form

This repo includes png2json.js which lets you create these JSON files from PNG images

node png2json dog.png

demo

clone this repo

run make

serve eg python -m SimpleHTTPServer 8080

install

npm install voxel-heightmap-terrain

api

var generator = require('voxel-heightmap-terrain');
var heightmap = require('./heightmap.json');
 
window.game = createGame({
  generate: function(x, y, z) {
    return generator(x, y, z, heightmap);
  },
  ...
});

license

MIT

Dependencies (13)

Dev Dependencies (3)

Package Sidebar

Install

npm i voxel-heightmap-terrain

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • gsmith