diff options
| author | Rémi Verschelde | 2018-05-12 09:38:00 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2018-05-12 09:38:00 +0200 |
| commit | 3d9deda8b367ae9c715bef7e9b1b5917ed81240f (patch) | |
| tree | 5390848dafc7655554ed9af957f5ff2b8f1c437e /modules/csg/config.py | |
| parent | 224d5371ff65a242f354b0c645176bdeea1cd14c (diff) | |
| download | godot-3d9deda8b367ae9c715bef7e9b1b5917ed81240f.tar.gz godot-3d9deda8b367ae9c715bef7e9b1b5917ed81240f.tar.zst godot-3d9deda8b367ae9c715bef7e9b1b5917ed81240f.zip | |
Diffstat (limited to 'modules/csg/config.py')
| -rw-r--r-- | modules/csg/config.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/csg/config.py b/modules/csg/config.py index 5f133eba9..5e1d91679 100644 --- a/modules/csg/config.py +++ b/modules/csg/config.py @@ -3,3 +3,19 @@ def can_build(platform): def configure(env): pass + +def get_doc_classes(): + return [ + "CSGBox", + "CSGCombiner", + "CSGCylinder", + "CSGMesh", + "CSGPolygon", + "CSGPrimitive", + "CSGShape", + "CSGSphere", + "CSGTorus", + ] + +def get_doc_path(): + return "doc_classes" |
