godot_voxel/doc/01_get-started.md

29 lines
1.1 KiB
Markdown
Raw Normal View History

2019-05-27 03:06:28 -07:00
# Getting Started With Voxel Tools For Godot
Voxel Tools for Godot is a C++ module that must be compiled into the engine. It requires version 3.1+. The following guide will give you a build of Godot that supports Voxel Tools and show you how to use it.
[Prebuilt binaries](http://tokisan.com/godot-binaries) are also available.
2019-05-27 03:06:28 -07:00
## Tutorials
* [Building Godot With Voxel Tools](02_build-voxel-tools.md)
* [Creating A Voxel Terrain](03_create-terrain.md)
* [Texturing & Materials](04_materials.md)
* [Collision](05_collision.md)
2020-02-16 22:10:08 -08:00
* [Custom Data Generators](06_custom-generator.md)
2019-10-04 03:28:46 -07:00
* [Performance Tips](07_performance-tips.md)
2019-05-27 03:06:28 -07:00
## API
2019-10-04 03:28:46 -07:00
* [Overview](08_api-overview.md)
2019-05-27 03:06:28 -07:00
* [API Class List](api/Class_List.md)
* [Region files specification](specs/region_format.md)
2019-05-27 03:06:28 -07:00
## External Reference
Find more information about related topics here.
* [Custom C++ modules in Godot](https://godot.readthedocs.io/en/latest/development/cpp/custom_modules_in_cpp.html)
2019-10-04 03:28:46 -07:00
* [Dual Marching Cubes algorithm](https://www.volume-gfx.com/volume-rendering/dual-marching-cubes/)
* [Transvoxel algorithm](https://transvoxel.org/)
2019-05-27 03:06:28 -07:00