Phaser Tilemap Generator Plugin

By Joel Dies

Demo

A really simple implementation of a perlin noise generator which allows nearly any generator to be used. Perlin Noise library came from Rye Terrell.

This is not 100% documented but is on its way to being 100% documented.

Help support these efforts by becoming a Patreon

If you wish to use this plugin in a commercial product, or get the full source you may do so this way.

Including in a project

Include the script into your html page.

Required Modules:

<script src="/path/to/plugin/lodash.min.js"></script>

<script src="/path/to/plugin/phreaknation.utilities.min.js"></script>
<script src="/path/to/plugin/phreaknation.generator.tilemap.min.js"></script>

In your create of your phaser project.

game.plugins.add(PhreakNation.Plugins.TilemapGenerator);

Example:

See included files

Calls

version()

Return the plugin version.

Example:

mapgen.version();

description()

Return a description of this plugin.

Example:

mapgen.description();

** More details coming soon **