mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-12 10:15:12 +01:00
56 lines
1004 B
Python
56 lines
1004 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"WorldArea",
|
|
|
|
"GroundClutterFoliage",
|
|
"GroundClutter",
|
|
|
|
"VoxelmanQueue",
|
|
"VoxelmanUnboundedQueue",
|
|
"VoxelLight",
|
|
|
|
"VoxelmanLevelGenerator",
|
|
|
|
"VoxelSurfaceMerger",
|
|
"VoxelSurfaceSimple",
|
|
"VoxelSurface",
|
|
"VoxelmanLibraryMerger",
|
|
"VoxelmanLibrarySimple",
|
|
"VoxelmanLibrary",
|
|
|
|
"VoxelCubePoints",
|
|
"VoxelMesherCubic",
|
|
"TransvoxelCellData",
|
|
"VoxelMeshData",
|
|
"VoxelMesherTransvoxel",
|
|
"VoxelMesher",
|
|
|
|
"PropDataEntity",
|
|
"PropDataEntry",
|
|
"PropDataLight",
|
|
"PropDataMesh",
|
|
"PropDataProp",
|
|
"PropDataScene",
|
|
"PropData",
|
|
|
|
"EnvironmentData",
|
|
"VoxelChunkPropData",
|
|
"VoxelChunk",
|
|
"VoxelStructure",
|
|
"VoxelWorld",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|