mirror of
https://github.com/Relintai/godot_fastnoise.git
synced 2024-11-12 10:15:21 +01:00
18 lines
225 B
Python
18 lines
225 B
Python
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"FastNoise",
|
|
"FastnoiseNoiseParams",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|