props_2d/config.py

41 lines
643 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 [
2021-11-24 14:00:16 +01:00
"PropDataEntry2D",
"PropDataLight2D",
"PropDataProp2D",
"PropDataScene2D",
"PropDataPortal2D",
"PropDataTiledWall2D",
"PropData2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"TiledWall2D",
"TiledWallData2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"PropDataProcessor2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"GroundClutterFoliage2D",
"GroundClutter2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"PropESSEntity2D",
"PropInstance2D",
"PropMeshUtils2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"PropSceneInstance2D",
2021-11-23 16:53:47 +01:00
2021-11-24 14:00:16 +01:00
"PropUtils2D",
2021-11-23 16:53:47 +01:00
]
def get_doc_path():
return "doc_classes"