2019-05-31 18:26:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-12-25 14:08:20 +01:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"WorldArea",
|
|
|
|
|
|
|
|
"GroundClutterFoliage",
|
|
|
|
"GroundClutter",
|
|
|
|
|
|
|
|
"VoxelmanQueue",
|
|
|
|
"VoxelmanUnboundedQueue",
|
|
|
|
"VoxelLight",
|
|
|
|
|
|
|
|
"VoxelmanLevelGenerator",
|
|
|
|
|
|
|
|
"VoxelSurfaceMerger",
|
|
|
|
"VoxelSurfaceSimple",
|
|
|
|
"VoxelSurface",
|
|
|
|
"VoxelmanLibraryMerger",
|
|
|
|
"VoxelmanLibrarySimple",
|
|
|
|
"VoxelmanLibrary",
|
|
|
|
|
|
|
|
"VoxelCubePoints",
|
|
|
|
"VoxelMesherCubic",
|
|
|
|
"TransvoxelCellData",
|
|
|
|
"VoxelMeshData",
|
|
|
|
"VoxelMesherTransvoxel",
|
|
|
|
"VoxelMesher",
|
|
|
|
|
|
|
|
"PropDataEntity",
|
|
|
|
"PropDataEntry",
|
|
|
|
"PropDataLight",
|
|
|
|
"PropDataMesh",
|
|
|
|
"PropDataProp",
|
|
|
|
"PropDataScene",
|
|
|
|
"PropData",
|
|
|
|
|
|
|
|
"EnvironmentData",
|
|
|
|
"VoxelChunkPropData",
|
|
|
|
"VoxelChunk",
|
|
|
|
"VoxelStructure",
|
|
|
|
"VoxelWorld",
|
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
2019-05-31 18:26:36 +02:00
|
|
|
|