props/config.py

40 lines
580 B
Python
Raw Normal View History

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",
"PropDataPortal",
2020-06-27 17:03:29 +02:00
"PropData",
"TiledWall",
"TiledWallData",
"PropDataProcessor",
"GroundClutterFoliage",
"GroundClutter",
2020-04-04 17:19:19 +02:00
"PropESSEntity",
"PropInstance",
"PropMeshUtils",
2020-06-27 23:13:26 +02:00
"PropSceneInstance",
2020-06-27 23:13:26 +02:00
"PropUtils",
]
def get_doc_path():
return "doc_classes"