mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
41 lines
646 B
Python
41 lines
646 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"MMAlgos",
|
|
"MMNode",
|
|
"CurveBase ",
|
|
"GradientBase",
|
|
"PolygonBase ",
|
|
"MMNodeUniversalProperty",
|
|
"MMMaterial",
|
|
"MMGraphNode",
|
|
"MatMakerGDEditor",
|
|
|
|
"MMUniform",
|
|
"MMGreyscaleUniform",
|
|
|
|
"MMTranslate",
|
|
"MMTransform",
|
|
"MMTiler",
|
|
"MMShear",
|
|
"MMScale",
|
|
"MMRotate",
|
|
"MMRepeat",
|
|
"MMMirror",
|
|
"MMKaleidoscope",
|
|
"MMColorTiler",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|