pandemonium_engine/modules/fastnoise
2023-08-26 22:41:21 +02:00
..
doc_classes Re-extracted class docs. 2023-08-26 22:41:21 +02:00
lib
.gitignore
config.py Cleaned up licenses in the fastnoise module. 2022-12-31 20:09:45 +01:00
COPYRIGHT.txt
fastnoise_noise_params.cpp Fix some property names being the same as getters / setters. 2023-06-01 15:42:32 +02:00
fastnoise_noise_params.h Fix the type of FastnoiseNoiseParams::get_fractal_octaves(). 2023-06-01 17:15:27 +02:00
LICENSE.md
noise.cpp
noise.h
README.md
register_types.cpp Now modules make use of the new registration levels. 2023-01-15 17:04:00 +01:00
register_types.h Added include guards to all module register_types.h-s. 2023-01-15 13:27:08 +01:00
SCsub

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