2020-04-03 09:23:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-06-27 17:03:29 +02:00
|
|
|
"PropDataEntry",
|
|
|
|
"PropDataLight",
|
|
|
|
"PropDataProp",
|
|
|
|
"PropDataScene",
|
2021-08-14 19:01:47 +02:00
|
|
|
"PropDataPortal",
|
2021-08-18 18:06:09 +02:00
|
|
|
"PropDataTiledWall",
|
2020-06-27 17:03:29 +02:00
|
|
|
"PropData",
|
2021-08-16 17:44:28 +02:00
|
|
|
|
|
|
|
"TiledWall",
|
|
|
|
"TiledWallData",
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2020-07-02 17:57:11 +02:00
|
|
|
"PropDataProcessor",
|
|
|
|
|
2020-04-03 09:23:01 +02:00
|
|
|
"GroundClutterFoliage",
|
|
|
|
"GroundClutter",
|
|
|
|
|
2020-04-04 17:19:19 +02:00
|
|
|
"PropESSEntity",
|
|
|
|
"PropInstance",
|
|
|
|
"PropMeshUtils",
|
2020-06-27 23:13:26 +02:00
|
|
|
|
2020-07-06 22:02:22 +02:00
|
|
|
"PropSceneInstance",
|
|
|
|
|
2020-06-27 23:13:26 +02:00
|
|
|
"PropUtils",
|
2022-01-12 22:15:46 +01:00
|
|
|
|
|
|
|
"PropInstanceMerger",
|
|
|
|
"PropCache",
|
|
|
|
"PropInstanceJob",
|
|
|
|
"PropInstanceMerger",
|
|
|
|
"PropInstancePropJob",
|
|
|
|
"PropMaterialCache",
|
|
|
|
"PropMaterialCachePCM",
|
|
|
|
"PropMesher",
|
|
|
|
"PropMesherJobStep",
|
|
|
|
"PropTextureJob",
|
|
|
|
"PropLight",
|
2020-04-03 09:23:01 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
|
|
|
|