mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-08 09:05:54 +01:00
23 lines
305 B
Python
23 lines
305 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WaveFormCollapse",
|
|
"TilingWaveFormCollapse",
|
|
"OverlappingWaveFormCollapse",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
|
|
def is_enabled():
|
|
return True
|