mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
57 lines
1.0 KiB
Python
57 lines
1.0 KiB
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WorldArea",
|
|
|
|
"VoxelLight",
|
|
|
|
"VoxelmanLevelGenerator",
|
|
"VoxelmanLevelGeneratorFlat",
|
|
|
|
"VoxelSurfaceMerger",
|
|
"VoxelSurfaceSimple",
|
|
"VoxelSurface",
|
|
"VoxelmanLibraryMerger",
|
|
"VoxelmanLibrarySimple",
|
|
"VoxelmanLibrary",
|
|
|
|
"VoxelCubePoints",
|
|
"VoxelMesherCubic",
|
|
"VoxelMeshData",
|
|
|
|
"MarchingCubesCellData",
|
|
"VoxelMesherMarchingCubes",
|
|
|
|
"VoxelMesher",
|
|
|
|
"EnvironmentData",
|
|
"VoxelChunkPropData",
|
|
"VoxelChunk",
|
|
"VoxelChunkDefault",
|
|
"VoxelStructure",
|
|
"BlockVoxelStructure",
|
|
"VoxelWorld",
|
|
|
|
"VoxelMesherBlocky",
|
|
"VoxelWorldBlocky",
|
|
"VoxelChunkBlocky",
|
|
"VoxelMesherLiquidBlocky",
|
|
|
|
"VoxelMesherDefault",
|
|
"VoxelWorldDefault",
|
|
"VoxelChunkBlocky",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|