f12a1b8863
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.
15 lines
208 B
Python
15 lines
208 B
Python
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"
|