mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
47 lines
804 B
Python
47 lines
804 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"BrightenAction",
|
|
"BrushAction",
|
|
"BucketAction",
|
|
"CutAction",
|
|
"DarkenAction",
|
|
"LineAction",
|
|
"MultiLineAction",
|
|
"PaintAction",
|
|
"PasteCutAction",
|
|
"PencilAction",
|
|
"RainbowAction",
|
|
"RectAction",
|
|
|
|
"PaintNode",
|
|
"PaintCanvas",
|
|
"PaintProject",
|
|
|
|
"PaintCanvasBackground",
|
|
"PaintVisualGrid",
|
|
|
|
"PaintCustomPropertyInspector",
|
|
"PaintProjectPropertyInspector",
|
|
"PaintProjectToolsPropertyInspector",
|
|
"PaintToolsPropertyInspector",
|
|
|
|
"PaintPolygon2D",
|
|
"PaintCurve2D",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
def get_license_file():
|
|
return "COPYRIGHT.txt"
|