Emphasize generators save space

master
Marc Gilleron 2021-04-30 22:10:36 +01:00
parent 9a49f7422b
commit 8053caed1a
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Generators
=============
`VoxelGenerator` allows to generate voxels given a specific area in space, or from a single position. They can serve as a base to automate the creation of large landscapes, or can be used in a game to generate worlds.
`VoxelGenerator` allows to generate voxels given a specific area in space, or from a single position. They can serve as a base to automate the creation of large landscapes, or can be used in a game to generate worlds. They have an important place because storing voxel data is expensive, while procedural sources are lightweight.
How generators work