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",
|
|
|
|
|
|
|
|
"VoxelLight",
|
|
|
|
|
|
|
|
"VoxelmanLevelGenerator",
|
|
|
|
|
|
|
|
"VoxelSurfaceMerger",
|
|
|
|
"VoxelSurfaceSimple",
|
|
|
|
"VoxelSurface",
|
|
|
|
"VoxelmanLibraryMerger",
|
|
|
|
"VoxelmanLibrarySimple",
|
|
|
|
"VoxelmanLibrary",
|
|
|
|
|
|
|
|
"VoxelCubePoints",
|
|
|
|
"VoxelMesherCubic",
|
|
|
|
"TransvoxelCellData",
|
|
|
|
"VoxelMeshData",
|
|
|
|
"VoxelMesherTransvoxel",
|
|
|
|
"VoxelMesher",
|
|
|
|
|
|
|
|
"EnvironmentData",
|
|
|
|
"VoxelChunkPropData",
|
|
|
|
"VoxelChunk",
|
2020-03-22 01:09:29 +01:00
|
|
|
"VoxelChunkDefault",
|
2019-12-25 14:08:20 +01:00
|
|
|
"VoxelStructure",
|
2020-03-22 01:09:29 +01:00
|
|
|
"BlockVoxelStructure",
|
2019-12-25 14:08:20 +01:00
|
|
|
"VoxelWorld",
|
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
2019-05-31 18:26:36 +02:00
|
|
|
|