voxelman/config.py

68 lines
1.2 KiB
Python
Raw Normal View History

def can_build(env, platform):
2020-10-01 20:57:42 +02:00
return True
def configure(env):
2020-10-01 20:57:42 +02:00
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",
"VoxelChunk",
"VoxelChunkDefault",
2019-12-25 14:08:20 +01:00
"VoxelStructure",
"BlockVoxelStructure",
2019-12-25 14:08:20 +01:00
"VoxelWorld",
"VoxelMesherBlocky",
2020-10-01 20:57:42 +02:00
"VoxelWorldBlocky",
"VoxelChunkBlocky",
"VoxelMesherLiquidBlocky",
2020-06-12 18:36:00 +02:00
"VoxelWorldMarchingCubes",
2020-10-01 20:57:42 +02:00
"VoxelChunkMarchingCubes",
2020-06-12 18:36:00 +02:00
2020-06-12 19:34:47 +02:00
"VoxelMesherCubic",
2020-10-01 20:57:42 +02:00
"VoxelWorldCubic",
"VoxelChunkCubic",
2020-06-12 19:34:47 +02:00
"VoxelMesherDefault",
2020-10-01 20:57:42 +02:00
"VoxelWorldDefault",
"VoxelJob",
2020-10-01 20:57:42 +02:00
"VoxelTerrarinJob",
2020-10-01 21:44:59 +02:00
"VoxelLightJob",
2020-10-01 23:43:04 +02:00
"VoxelPropJob",
2019-12-25 14:08:20 +01:00
]
2020-10-01 20:57:42 +02:00
2019-12-25 14:08:20 +01:00
def get_doc_path():
return "doc_classes"