pandemonium_engine/modules/material_maker/config.py

136 lines
2.6 KiB
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",
2022-06-17 01:38:18 +02:00
"MMShape",
2022-06-17 10:17:17 +02:00
"MMImage",
2022-06-17 10:55:37 +02:00
"MMCurve",
2022-06-17 11:25:09 +02:00
2022-06-17 12:25:33 +02:00
"MMSdf3dRender",
"MMSdf3dColor",
2022-06-17 12:25:33 +02:00
2022-06-17 11:25:09 +02:00
"MMSdf3dTfTranslate",
2022-06-17 12:07:24 +02:00
"MMSdf3dTfScale",
"MMSdf3dTfRotate",
"MMSdf3dShapeTorus",
"MMSdf3dShapeSphere",
"MMSdf3dShapeCylinder",
"MMSdf3dShapeCone",
"MMSdf3dShapeCapsule",
"MMSdf3dShapeBox",
"MMSdf3dOpSmoothBool",
"MMSdf3dOpRounded",
"MMSdf3dOpRevolution",
"MMSdf3dOpRepeat",
"MMSdf3dOpMorph",
"MMSdf3dOpElongation",
"MMSdf3dOpCircleRepeat",
"MMSdf3dOpBool",
"SSSdShow",
"MMSdTfTranslate",
"MMSdTfScale",
"MMSdTfRotate",
"MMSdShapeRhombus",
2022-06-17 19:58:57 +02:00
"MMSdShapePolygon",
"MMSdShapeLine",
"MMSdShapeCircle",
"MMSdShapeBox",
"MMSdShapeArc",
2022-06-17 21:38:22 +02:00
"MMSdOpSmoothBool",
"MMSdOpRoundedShape",
"MMSdOpRepeat",
"MMSdOpMorph",
"MMSdOpCircleRepeat",
"MMSdOpBool",
"MMSdOpAnnularShape",
2022-06-18 00:19:06 +02:00
"MMWeave",
"MMTruchet",
"MMSineWave",
"MMScratches",
"MMRunes",
"MMPattern",
"MMIching",
"MMBricks",
"MMBeehive",
2022-06-18 11:53:46 +02:00
"MMOutputImage",
"MMVoronoi",
"MMNoise",
"MMFbmNoise",
"MMColorValue",
"MMColorNoise",
"MMAnisotropicNoise",
2022-06-18 16:49:53 +02:00
"MMRadialGradient",
"MMGradient",
"MMCircularGradient",
2022-06-18 23:03:34 +02:00
"MMTonality",
"MMSwapChannels",
"MMQuantize",
"MMMath",
"MMMakeTileable",
"MMInvert",
"MMGreyscale",
"MMFillToUv",
"MMFillToSize",
"MMFillToRandomGrey",
"MMFillToRandomColor",
"MMFillToPosition",
"MMFillToColor",
"MMFillChannel",
"MMEmboss",
"MMDecompose",
"MMCombine",
"MMColorize",
"MMBrightnessContrast",
"MMBlurGaussian",
"MMBlend",
"MMAdjustHsv",
]
def get_doc_path():
return "doc_classes"