2021-01-21 00:37:01 +00:00
|
|
|
site_name: Voxel Tools documentation
|
2021-06-14 19:37:22 +01:00
|
|
|
# TODO This should be changed to an environment variable
|
|
|
|
# This is fine for now, but when we have to support multiple versions of the documentation,
|
|
|
|
# the URL will vary, so in the long term we should not hardcode it here.
|
|
|
|
# This would be needed: https://github.com/readthedocs/readthedocs.org/issues/8260
|
|
|
|
site_url: https://voxel-tools.readthedocs.io/en/latest/
|
2021-01-21 00:37:01 +00:00
|
|
|
theme: readthedocs
|
|
|
|
|
2021-01-21 22:40:15 +00:00
|
|
|
docs_dir: source
|
2021-01-21 00:37:01 +00:00
|
|
|
|
2021-01-21 22:41:57 +00:00
|
|
|
extra_css:
|
|
|
|
- css/extra.css
|
|
|
|
|
2021-01-21 00:37:01 +00:00
|
|
|
nav:
|
|
|
|
- 'index.md'
|
|
|
|
- 'getting_the_module.md'
|
|
|
|
- 'quick_start.md'
|
|
|
|
- 'overview.md'
|
|
|
|
- 'terrain_types.md'
|
|
|
|
- 'blocky_terrain.md'
|
|
|
|
- 'smooth_terrain.md'
|
|
|
|
- 'generators.md'
|
|
|
|
- 'streams.md'
|
2021-02-16 20:48:41 +00:00
|
|
|
- 'instancing.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'editor.md'
|
2021-08-01 18:46:58 +01:00
|
|
|
- 'multiplayer.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'scripting.md'
|
2021-09-23 22:33:05 +01:00
|
|
|
- 'performance.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'module_development.md'
|
|
|
|
- 'changelog.md'
|
2021-01-21 22:41:57 +00:00
|
|
|
- '___.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'API':
|
2021-01-21 22:41:57 +00:00
|
|
|
# <generated_class_list>
|
|
|
|
- api/FastNoiseLite.md
|
|
|
|
- api/FastNoiseLiteGradient.md
|
|
|
|
- api/Voxel.md
|
|
|
|
- api/VoxelBlockSerializer.md
|
|
|
|
- api/VoxelBoxMover.md
|
|
|
|
- api/VoxelBuffer.md
|
|
|
|
- api/VoxelColorPalette.md
|
|
|
|
- api/VoxelGenerator.md
|
|
|
|
- api/VoxelGeneratorFlat.md
|
|
|
|
- api/VoxelGeneratorGraph.md
|
|
|
|
- api/VoxelGeneratorHeightmap.md
|
|
|
|
- api/VoxelGeneratorImage.md
|
|
|
|
- api/VoxelGeneratorNoise.md
|
|
|
|
- api/VoxelGeneratorNoise2D.md
|
|
|
|
- api/VoxelGeneratorScript.md
|
|
|
|
- api/VoxelGeneratorWaves.md
|
2021-02-16 20:48:41 +00:00
|
|
|
- api/VoxelInstanceGenerator.md
|
|
|
|
- api/VoxelInstanceLibrary.md
|
|
|
|
- api/VoxelInstanceLibraryItem.md
|
|
|
|
- api/VoxelInstancer.md
|
2021-01-21 22:41:57 +00:00
|
|
|
- api/VoxelLibrary.md
|
|
|
|
- api/VoxelLodTerrain.md
|
|
|
|
- api/VoxelMesher.md
|
|
|
|
- api/VoxelMesherBlocky.md
|
|
|
|
- api/VoxelMesherCubes.md
|
|
|
|
- api/VoxelMesherDMC.md
|
|
|
|
- api/VoxelMesherTransvoxel.md
|
|
|
|
- api/VoxelNode.md
|
|
|
|
- api/VoxelRaycastResult.md
|
|
|
|
- api/VoxelServer.md
|
|
|
|
- api/VoxelStream.md
|
|
|
|
- api/VoxelStreamBlockFiles.md
|
|
|
|
- api/VoxelStreamRegionFiles.md
|
2021-02-16 20:54:45 +00:00
|
|
|
- api/VoxelStreamSQLite.md
|
2021-01-21 22:41:57 +00:00
|
|
|
- api/VoxelStreamScript.md
|
|
|
|
- api/VoxelTerrain.md
|
|
|
|
- api/VoxelTool.md
|
|
|
|
- api/VoxelToolBuffer.md
|
|
|
|
- api/VoxelToolTerrain.md
|
|
|
|
- api/VoxelViewer.md
|
|
|
|
- api/VoxelVoxLoader.md
|
|
|
|
# </generated_class_list>
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'Serialization formats':
|
2021-01-31 17:39:08 +00:00
|
|
|
- 'specs/block_format_v1.md'
|
|
|
|
- 'specs/block_format_v2.md'
|
2021-02-16 21:16:37 +00:00
|
|
|
- 'specs/instances_format.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
- 'specs/region_format_v2.md'
|
|
|
|
- 'specs/region_format_v3.md'
|
2021-01-31 17:39:08 +00:00
|
|
|
- 'specs/sqlite_format.md'
|
2021-09-27 00:10:06 +01:00
|
|
|
- '___2.md'
|
2021-01-21 00:37:01 +00:00
|
|
|
|
|
|
|
markdown_extensions:
|
|
|
|
# Makes permalinks appear on headings
|
|
|
|
- toc:
|
|
|
|
permalink: True
|
|
|
|
# Makes boxes for notes and warnings
|
|
|
|
- admonition
|
|
|
|
# Better highlighter which supports GDScript
|
|
|
|
- codehilite
|