Browse Source

Clarify that procedural geometry can only be created on the CPU

Hugo Locurcio 4 years ago
parent
commit
421c3a6a49
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?
 -----------------