1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Add SimplexNoise and NoiseTexture as new resources

SimplexNoise can be used to generate parameterized fractal noise based on Open Simplex.

NoiseTexture uses SimplexNoise to generate noise textures for using in
shaders/visual effects.
This commit is contained in:
JFonS
2018-08-25 00:25:06 +02:00
parent 4d228e66b4
commit f12a1b8863
16 changed files with 3450 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"NoiseTexture",
"SimplexNoise"
]
def get_doc_path():
return "doc_classes"