Skip to content

Commit 6a19c12

Browse files
authored
Merge pull request #8839 from timeeeee/master
Remove incorrect "we won't use the index array"
2 parents 94d114a + 892d39e commit 6a19c12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tutorials/3d/procedural_geometry/arraymesh.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ See :ref:`Mesh.ArrayType <enum_Mesh_ArrayType>` for a full list.
6868
- :ref:`PackedInt32Array <class_PackedInt32Array>`
6969

7070
In most cases when creating a mesh, we define it by its vertex positions. So usually, the array of vertices (at index 0) is required, while the index array (at index 12) is optional and
71-
will only be used if included. It is also possible to create a mesh with only the index array and no vertex array, but that's beyond the scope of this tutorial. In fact, we won't use the
72-
index array at all.
71+
will only be used if included. It is also possible to create a mesh with only the index array and no vertex array, but that's beyond the scope of this tutorial.
7372

7473
All the other arrays carry information about the vertices. They are optional and will only be used if included. Some of these arrays (e.g. ``ARRAY_COLOR``)
7574
use one entry per vertex to provide extra information about vertices. They must have the same size as the vertex array. Other arrays (e.g. ``ARRAY_TANGENT``) use

0 commit comments

Comments
 (0)