voxelman/config.py

45 lines
777 B
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",
"VoxelmanLevelGenerator",
"VoxelSurfaceMerger",
"VoxelSurfaceSimple",
"VoxelSurface",
"VoxelmanLibraryMerger",
"VoxelmanLibrarySimple",
"VoxelmanLibrary",
"VoxelCubePoints",
"VoxelMesherCubic",
"TransvoxelCellData",
"VoxelMeshData",
"VoxelMesherTransvoxel",
"VoxelMesher",
"EnvironmentData",
"VoxelChunkPropData",
"VoxelChunk",
"VoxelChunkDefault",
2019-12-25 14:08:20 +01:00
"VoxelStructure",
"BlockVoxelStructure",
2019-12-25 14:08:20 +01:00
"VoxelWorld",
]
def get_doc_path():
return "doc_classes"