pandemonium_engine/modules/material_maker/config.py

42 lines
669 B
Python
Raw Normal View History

def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"MMAlgos",
"MMNode",
2022-06-12 14:45:01 +02:00
"CurveBase ",
"GradientBase",
"PolygonBase ",
"MMNodeUniversalProperty",
"MMMaterial",
2022-06-08 21:48:23 +02:00
"MMGraphNode",
"MatMakerGDEditor",
"MMUniform",
2022-06-16 18:40:43 +02:00
"MMGreyscaleUniform",
2022-06-16 18:59:21 +02:00
"MMTranslate",
2022-06-16 19:26:46 +02:00
"MMTransform",
2022-06-16 20:00:15 +02:00
"MMTiler",
2022-06-16 21:09:20 +02:00
"MMShear",
2022-06-16 21:20:48 +02:00
"MMScale",
"MMRotate",
2022-06-16 21:31:35 +02:00
"MMRepeat",
"MMMirror",
"MMKaleidoscope",
"MMColorTiler",
2022-06-17 01:17:01 +02:00
"MMCircleMap",
]
def get_doc_path():
return "doc_classes"