Merge pull request #4210 from Calinou/procedural-geometry-cpu-only

Clarify that procedural geometry can only be created on the CPU
This commit is contained in:
Nathan Lovato
2020-10-06 14:58:56 -06:00
committed by GitHub

View File

@@ -3,7 +3,7 @@
Procedural geometry
===================
There are many ways to procedurally generate geometry in Godot. In this tutorial series
There are many ways to procedurally generate geometry in Godot. In this tutorial series,
we will explore a few of them. Each technique has its own benefits and drawbacks, so
it is best to understand each one and how it can be useful in a given situation.
@@ -16,6 +16,11 @@ it is best to understand each one and how it can be useful in a given situation.
surfacetool
immediategeometry
.. note::
All the procedural geometry generation methods described here run on the
CPU. Godot doesn't support generating geometry on the GPU yet.
What is geometry?
-----------------