FastNoise library integration for Godot Engine
Go to file
Marc b1e9f39fad Update README.md
Added link to Simplex patent
2016-05-04 02:11:03 +02:00
lib Added project 2016-05-02 17:19:15 +02:00
.gitignore Added project 2016-05-02 17:19:15 +02:00
config.py Added project 2016-05-02 17:19:15 +02:00
LICENSE.md Added project 2016-05-02 17:19:15 +02:00
noise.cpp Added project 2016-05-02 17:19:15 +02:00
noise.h Added project 2016-05-02 17:19:15 +02:00
README.md Update README.md 2016-05-04 02:11:03 +02:00
register_types.cpp Added project 2016-05-02 17:19:15 +02:00
register_types.h Added project 2016-05-02 17:19:15 +02:00
SCsub Added project 2016-05-02 17:19:15 +02:00

FastNoise for Godot Engine

This is an integration of the FastNoise C++ library for Godot Engine. It uses Simplex Noise for some of its generators, which is patented for image generation. If you want to avoid the patent, you can try OpenSimplex, for which I also made a module.

I still prefer FastNoise because it has more features, doesn't allocates dynamic memory and works with a single class.