pandemonium_engine/modules/material_maker/config.py
2022-06-17 10:55:37 +02:00

46 lines
727 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",
"MMCircleMap",
"MMShape",
"MMImage",
"MMCurve",
]
def get_doc_path():
return "doc_classes"