From 8053caed1a0f2d9d19cd9db695db4a405765460e Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Fri, 30 Apr 2021 22:10:36 +0100 Subject: [PATCH] Emphasize generators save space --- doc/source/generators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/generators.md b/doc/source/generators.md index 66dda50c..528e2a50 100644 --- a/doc/source/generators.md +++ b/doc/source/generators.md @@ -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