mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-12 10:15:12 +01:00
45 lines
777 B
Python
45 lines
777 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WorldArea",
|
|
|
|
"VoxelLight",
|
|
|
|
"VoxelmanLevelGenerator",
|
|
|
|
"VoxelSurfaceMerger",
|
|
"VoxelSurfaceSimple",
|
|
"VoxelSurface",
|
|
"VoxelmanLibraryMerger",
|
|
"VoxelmanLibrarySimple",
|
|
"VoxelmanLibrary",
|
|
|
|
"VoxelCubePoints",
|
|
"VoxelMesherCubic",
|
|
"TransvoxelCellData",
|
|
"VoxelMeshData",
|
|
"VoxelMesherTransvoxel",
|
|
"VoxelMesher",
|
|
|
|
"EnvironmentData",
|
|
"VoxelChunkPropData",
|
|
"VoxelChunk",
|
|
"VoxelChunkDefault",
|
|
"VoxelStructure",
|
|
"BlockVoxelStructure",
|
|
"VoxelWorld",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|