FastNoise library integration for Godot Engine
Go to file
Relintai ea3b34d972 Remove -std=c++11 cppflag as it!s not needed. 2020-03-24 16:54:16 +01:00
lib
.gitignore
LICENSE.md
README.md
SCsub Remove -std=c++11 cppflag as it!s not needed. 2020-03-24 16:54:16 +01:00
config.py
fastnoise_noise_params.cpp
fastnoise_noise_params.h
noise.cpp
noise.h
register_types.cpp
register_types.h

README.md

FastNoise for Godot Engine

Description

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.

Install

You have to get the source code of Godot to compile it with the module. Copy the contents of the repository inside a fastnoise directory under Godot's modules folder. The name is important for the module to compile properly.

Example git command: git clone https://github.com/Zylann/godot_fastnoise.git fastnoise