Browse Source

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

Clarify that procedural geometry can only be created on the CPU
Nathan Lovato 4 years ago
parent
commit
0a295734c6
1 changed files with 6 additions and 1 deletions
  1. 6 1
      tutorials/content/procedural_geometry/index.rst

+ 6 - 1
tutorials/content/procedural_geometry/index.rst

@@ -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?
 -----------------