Skip to content

Commit d27c7d0

Browse files
authored
Fix misplaced end of sentence
1 parent 3dd0622 commit d27c7d0

File tree

1 file changed

+2
-3
lines changed
  • contributing/development/file_formats

1 file changed

+2
-3
lines changed

contributing/development/file_formats/tscn.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,6 @@ An ArrayMesh consists of several surfaces contained in the ``_surfaces`` array
328328
with the following keys:
329329

330330
- ``aabb``: The computed axis-aligned bounding box for visibility.
331-
``Mesh.PrimitiveType`` Godot enum. ``0`` = points, ``1`` = lines, ``2`` = line
332-
strip, ``3`` = triangles (most common), ``4`` = triangle strip.
333331
- ``attribute_data``: Vertex attribute data, such as normals, tangents, vertex
334332
colors, UV1, UV2 and custom vertex data.
335333
- ``bone_aabbs``: The axis-aligned bounding box of each bone for visibility.
@@ -345,7 +343,8 @@ with the following keys:
345343
- ``material``: The material used when drawing the surface.
346344
- ``name``: The surface's name. This can be used in scripts and is imported from
347345
3D DCCs.
348-
- ``primitive``: The surface's primitive type, matching the
346+
- ``primitive``: The surface's primitive type, matching the ``Mesh.PrimitiveType`` Godot enum. ``0`` = points, ``1`` = lines, ``2`` = line
347+
strip, ``3`` = triangles (most common), ``4`` = triangle strip.
349348
- ``skin_data``: Bone weight data.
350349
- ``vertex_count``: Number of vertices in the surface. This must match ``vertex_data``'s size.
351350
- ``vertex_data``: The vertex position data.

0 commit comments

Comments
 (0)