An open API service indexing awesome lists of open source software.

https://github.com/runemadsen/rune.noise.js

A plugin to allow noise generation in Rune.js
https://github.com/runemadsen/rune.noise.js

Last synced: 2 months ago
JSON representation

A plugin to allow noise generation in Rune.js

Awesome Lists containing this project

README

        

# Rune.Noise.js

A plugin to allow noise generation in Rune.js.

## Using in the browser

First download the [latest release](https://github.com/runemadsen/rune.noise.js/releases/latest). Then include the `noise.js` file after your `rune.js` file in your HTML file.

```html


```

## Using in node

`npm install rune.noise.js`

Then require the `rune.noise.js` module in your code, along with your `rune.js` module (if needed).

```js
var Rune = require('rune.js');
var Noise = require('rune.noise.js');
```

## Examples

Look at the [Randomization section](http://printingcode.runemadsen.com/examples/#randomization) in the Rune.js examples.