mirror of
https://github.com/Relintai/terraman.git
synced 2025-04-21 21:41:20 +02:00
68 lines
1.3 KiB
Python
68 lines
1.3 KiB
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
#"WorldArea",
|
|
|
|
#"VoxelLight",
|
|
#"VoxelmanLight",
|
|
|
|
# "VoxelmanLevelGenerator",
|
|
# "VoxelmanLevelGeneratorFlat",
|
|
|
|
#"VoxelSurfaceMerger",
|
|
# "VoxelSurfaceSimple",
|
|
# "VoxelSurface",
|
|
# "VoxelmanLibraryMerger",
|
|
# "VoxelmanLibrarySimple",
|
|
# "VoxelmanLibrary",
|
|
|
|
# "VoxelCubePoints",
|
|
# "VoxelMesherCubic",
|
|
# "VoxelMeshData",
|
|
|
|
# "MarchingCubesCellData",
|
|
# "VoxelMesherMarchingCubes",
|
|
|
|
# "VoxelMesher",
|
|
|
|
# "EnvironmentData",
|
|
# "VoxelChunk",
|
|
# "VoxelChunkDefault",
|
|
# "VoxelStructure",
|
|
# "BlockVoxelStructure",
|
|
# "VoxelWorld",
|
|
|
|
# "VoxelMesherBlocky",
|
|
# "VoxelWorldBlocky",
|
|
#"VoxelChunkBlocky",
|
|
#"VoxelMesherLiquidBlocky",
|
|
|
|
# "VoxelWorldMarchingCubes",
|
|
# "VoxelChunkMarchingCubes",
|
|
|
|
# "VoxelMesherCubic",
|
|
# "VoxelWorldCubic",
|
|
# "VoxelChunkCubic",
|
|
|
|
# "VoxelMesherDefault",
|
|
# "VoxelWorldDefault",
|
|
|
|
# "VoxelJob",
|
|
# "VoxelTerrarinJob",
|
|
# "VoxelLightJob",
|
|
#"VoxelPropJob",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|