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
|
|
|
"Voxel",
|
|
|
|
"VoxelLibrary",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelColorPalette",
|
2021-02-16 20:48:41 +00:00
|
|
|
"VoxelInstanceLibrary",
|
|
|
|
"VoxelInstanceLibraryItem",
|
|
|
|
"VoxelInstanceGenerator",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelBuffer",
|
|
|
|
|
|
|
|
"VoxelNode",
|
2019-08-26 02:54:57 +01:00
|
|
|
"VoxelTerrain",
|
|
|
|
"VoxelLodTerrain",
|
2020-09-06 19:36:53 +01:00
|
|
|
"VoxelViewer",
|
2021-02-16 20:48:41 +00:00
|
|
|
"VoxelInstancer",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
"VoxelStream",
|
|
|
|
"VoxelStreamFile",
|
|
|
|
"VoxelStreamBlockFiles",
|
|
|
|
"VoxelStreamRegionFiles",
|
2021-02-16 20:53:30 +00:00
|
|
|
"VoxelStreamSQLite",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelStreamScript",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelGenerator",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelGeneratorFlat",
|
|
|
|
"VoxelGeneratorWaves",
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelGeneratorHeightmap",
|
|
|
|
"VoxelGeneratorImage",
|
|
|
|
"VoxelGeneratorNoise2D",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelGeneratorNoise",
|
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",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelRaycastResult",
|
2020-02-13 00:48:18 +08:00
|
|
|
"VoxelTool",
|
2020-08-02 16:37:46 +01:00
|
|
|
"VoxelToolTerrain",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelToolBuffer",
|
2020-09-06 19:36:53 +01:00
|
|
|
"VoxelBlockSerializer",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelVoxLoader",
|
|
|
|
"FastNoiseLite",
|
|
|
|
"FastNoiseLiteGradient",
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
"VoxelMesher",
|
|
|
|
"VoxelMesherBlocky",
|
|
|
|
"VoxelMesherTransvoxel",
|
2021-01-21 00:37:01 +00:00
|
|
|
"VoxelMesherDMC",
|
|
|
|
"VoxelMesherCubes"
|
2020-02-19 19:26:14 +00:00
|
|
|
]
|
2019-08-26 02:54:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc/classes"
|