2016-05-01 15:00:02 +02:00
|
|
|
|
2018-09-02 18:48:08 +01:00
|
|
|
def can_build(env, platform):
|
2016-05-01 15:00:02 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
2020-08-24 13:54:30 +01:00
|
|
|
def get_icons_path():
|
|
|
|
return "editor/icons"
|
|
|
|
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2019-08-26 02:54:57 +01:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-09-06 19:36:53 +01:00
|
|
|
"VoxelServer",
|
|
|
|
|
2019-08-26 02:54:57 +01:00
|
|
|
"VoxelBuffer",
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2019-08-26 02:54:57 +01:00
|
|
|
"Voxel",
|
|
|
|
"VoxelLibrary",
|
|
|
|
|
|
|
|
"VoxelTerrain",
|
|
|
|
"VoxelLodTerrain",
|
2020-09-06 19:36:53 +01:00
|
|
|
"VoxelViewer",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
"VoxelStream",
|
2020-10-31 22:11:25 +00:00
|
|
|
"VoxelStreamScript",
|
2019-08-26 02:54:57 +01:00
|
|
|
"VoxelStreamFile",
|
|
|
|
"VoxelStreamBlockFiles",
|
|
|
|
"VoxelStreamRegionFiles",
|
|
|
|
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelGenerator",
|
|
|
|
"VoxelGeneratorHeightmap",
|
|
|
|
"VoxelGeneratorImage",
|
|
|
|
"VoxelGeneratorNoise",
|
|
|
|
"VoxelGeneratorNoise2D",
|
|
|
|
"VoxelGeneratorTest",
|
2020-08-02 16:37:46 +01:00
|
|
|
"VoxelGeneratorGraph",
|
2020-10-31 22:11:25 +00:00
|
|
|
"VoxelGeneratorScript",
|
2020-02-13 00:48:18 +08:00
|
|
|
|
2019-08-26 02:54:57 +01:00
|
|
|
"VoxelBoxMover",
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelTool",
|
2020-08-02 16:37:46 +01:00
|
|
|
"VoxelToolTerrain",
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelRaycastResult",
|
2020-09-06 19:36:53 +01:00
|
|
|
"VoxelBlockSerializer",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
"VoxelMesher",
|
|
|
|
"VoxelMesherBlocky",
|
|
|
|
"VoxelMesherTransvoxel",
|
|
|
|
"VoxelMesherDMC"
|
2020-02-19 19:26:14 +00:00
|
|
|
]
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc/classes"
|