2019-05-31 18:26:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
2020-10-01 20:57:42 +02:00
|
|
|
return True
|
2019-05-31 18:26:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
2020-10-01 20:57:42 +02:00
|
|
|
pass
|
2019-05-31 18:26:36 +02:00
|
|
|
|
|
|
|
|
2019-12-25 14:08:20 +01:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"WorldArea",
|
|
|
|
|
|
|
|
"VoxelLight",
|
2020-06-27 19:00:46 +02:00
|
|
|
"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",
|
2020-06-12 17:59:04 +02:00
|
|
|
|
|
|
|
"MarchingCubesCellData",
|
|
|
|
"VoxelMesherMarchingCubes",
|
|
|
|
|
2019-12-25 14:08:20 +01:00
|
|
|
"VoxelMesher",
|
|
|
|
|
|
|
|
"EnvironmentData",
|
|
|
|
"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",
|
2020-04-05 01:36:41 +02:00
|
|
|
|
|
|
|
"VoxelMesherBlocky",
|
2020-10-01 20:57:42 +02:00
|
|
|
"VoxelWorldBlocky",
|
|
|
|
"VoxelChunkBlocky",
|
2020-04-19 23:02:37 +02:00
|
|
|
"VoxelMesherLiquidBlocky",
|
2020-04-18 02:33:05 +02:00
|
|
|
|
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",
|
2020-06-20 23:32:55 +02:00
|
|
|
"VoxelChunkCubic",
|
2020-06-12 19:34:47 +02:00
|
|
|
|
2020-04-18 02:33:05 +02:00
|
|
|
"VoxelMesherDefault",
|
2020-10-01 20:57:42 +02:00
|
|
|
"VoxelWorldDefault",
|
2020-08-04 09:44:18 +02:00
|
|
|
|
|
|
|
"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"
|