2a55f10e8b
- replace OpenSimplexNoise Co-authored-by: Cory Petkovsek <tinmanjuggernaut@users.noreply.github.com>
18 lines
234 B
Python
18 lines
234 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"FastNoiseLite",
|
|
"Noise",
|
|
"NoiseTexture",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|