props_2d/config.py

53 lines
970 B
Python
Raw Normal View History

2021-11-23 16:53:47 +01:00
def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
2022-02-21 22:12:25 +01:00
"Prop2DDataEntry",
"Prop2DDataLight",
"Prop2DDataProp2D",
"Prop2DDataScene",
"Prop2DDataPortal",
"Prop2DDataTiledWall2D",
"Prop2DData",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"TiledWall2D",
"TiledWall2DData",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"Prop2DDataProcessor",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"GroundClutter2DFoliage",
"GroundClutter2D",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"Prop2DESSEntity",
"Prop2DInstance",
"Prop2DMeshUtils",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"Prop2DSceneInstance",
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
"Prop2DUtils",
2022-02-21 22:12:25 +01:00
"Prop2DInstanceMerger",
"Prop2DCache",
"Prop2DInstanceJob",
"Prop2DInstanceMerger",
"Prop2DInstanceProp2DJob",
"Prop2DMaterialCache",
"Prop2DMaterialCachePCM",
"Prop2DMesher",
"Prop2DMesherJobStep",
"Prop2DTextureJob",
"Prop2DLight",
2021-11-23 16:53:47 +01:00
]
def get_doc_path():
return "doc_classes"