2022-04-15 00:00:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2022-08-21 00:32:32 +02:00
|
|
|
"BrightenAction",
|
|
|
|
"BrushAction",
|
|
|
|
"BucketAction",
|
|
|
|
"CutAction",
|
|
|
|
"DarkenAction",
|
|
|
|
"LineAction",
|
|
|
|
"MultiLineAction",
|
|
|
|
"PaintAction",
|
|
|
|
"PasteCutAction",
|
|
|
|
"PencilAction",
|
|
|
|
"RainbowAction",
|
|
|
|
"RectAction",
|
|
|
|
|
2022-11-15 12:35:44 +01:00
|
|
|
"PaintNode",
|
2022-11-15 13:17:37 +01:00
|
|
|
"PaintCanvas",
|
2022-11-15 17:58:00 +01:00
|
|
|
"PaintProject",
|
|
|
|
|
2022-11-20 23:26:31 +01:00
|
|
|
"PaintCanvasBackground",
|
|
|
|
"PaintVisualGrid",
|
|
|
|
|
|
|
|
"PaintCustomPropertyInspector",
|
|
|
|
"PaintProjectPropertyInspector",
|
|
|
|
"PaintProjectToolsPropertyInspector",
|
|
|
|
"PaintToolsPropertyInspector",
|
2023-08-25 19:16:52 +02:00
|
|
|
|
|
|
|
"PaintPolygon2D",
|
|
|
|
"PaintCurve2D",
|
2022-04-15 00:00:46 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
2022-12-31 21:38:08 +01:00
|
|
|
|
|
|
|
def get_license_file():
|
|
|
|
return "COPYRIGHT.txt"
|