voxelman/config.py

65 lines
1.2 KiB
Python
Raw Normal View History

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",
"VoxelmanLight",
2019-12-25 14:08:20 +01:00
"VoxelmanLevelGenerator",
2020-04-17 15:29:36 +02:00
"VoxelmanLevelGeneratorFlat",
2019-12-25 14:08:20 +01:00
"VoxelSurfaceMerger",
"VoxelSurfaceSimple",
"VoxelSurface",
"VoxelmanLibraryMerger",
"VoxelmanLibrarySimple",
"VoxelmanLibrary",
"VoxelCubePoints",
"VoxelMesherCubic",
"VoxelMeshData",
"MarchingCubesCellData",
"VoxelMesherMarchingCubes",
2019-12-25 14:08:20 +01:00
"VoxelMesher",
"EnvironmentData",
"VoxelChunkPropData",
"VoxelChunk",
"VoxelChunkDefault",
2019-12-25 14:08:20 +01:00
"VoxelStructure",
"BlockVoxelStructure",
2019-12-25 14:08:20 +01:00
"VoxelWorld",
"VoxelMesherBlocky",
2020-04-17 15:29:36 +02:00
"VoxelWorldBlocky",
"VoxelChunkBlocky",
"VoxelMesherLiquidBlocky",
2020-06-12 18:36:00 +02:00
"VoxelWorldMarchingCubes",
"VoxelChunkMarchingCubes",
2020-06-12 19:34:47 +02:00
"VoxelMesherCubic",
"VoxelWorldCubic",
"VoxelChunkCubic",
2020-06-12 19:34:47 +02:00
"VoxelMesherDefault",
"VoxelWorldDefault",
"VoxelChunkBlocky",
2019-12-25 14:08:20 +01:00
]
def get_doc_path():
return "doc_classes"