[Mesh] type that provides utility for constructing a surface from arrays. The [ArrayMesh] is used to construct a [Mesh] by specifying the attributes as arrays. The most basic example is the creation of a single triangle: [codeblock] var vertices = PoolVector3Array() vertices.push_back(Vector3(0, 1, 0)) vertices.push_back(Vector3(1, 0, 0)) vertices.push_back(Vector3(0, 0, 1)) # Initialize the ArrayMesh. var arr_mesh = ArrayMesh.new() var arrays = [] arrays.resize(ArrayMesh.ARRAY_MAX) arrays[ArrayMesh.ARRAY_VERTEX] = vertices # Create the Mesh. arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) var m = MeshInstance.new() m.mesh = arr_mesh [/codeblock] The [MeshInstance] is ready to be added to the [SceneTree] to be shown. See also [ImmediateGeometry], [MeshDataTool] and [SurfaceTool] for procedural geometry generation. [b]Note:[/b] Godot uses clockwise [url=https://learnopengl.com/Advanced-OpenGL/Face-culling]winding order[/url] for front faces of triangle primitive modes. https://docs.godotengine.org/en/3.2/tutorials/content/procedural_geometry/arraymesh.html Adds name for a blend shape that will be added with [method add_surface_from_arrays]. Must be called before surface is added. Creates a new surface. Surfaces are created to be rendered using a [code]primitive[/code], which may be any of the types defined in [enum Mesh.PrimitiveType]. (As a note, when using indices, it is recommended to only use points, lines or triangles.) [method Mesh.get_surface_count] will become the [code]surf_idx[/code] for this new surface. The [code]arrays[/code] argument is an array of arrays. See [enum ArrayType] for the values used in this array. For example, [code]arrays[0][/code] is the array of vertices. That first vertex sub-array is always required; the others are optional. Adding an index array puts this function into "index mode" where the vertex and other arrays become the sources of data and the index array defines the vertex order. All sub-arrays must have the same length as the vertex array or be empty, except for [constant ARRAY_INDEX] if it is used. Adding an index array puts this function into "index mode" where the vertex and other arrays become the sources of data, and the index array defines the order of the vertices. Removes all blend shapes from this [ArrayMesh]. Returns the number of blend shapes that the [ArrayMesh] holds. Returns the name of the blend shape at this index. Will perform a UV unwrap on the [ArrayMesh] to prepare the mesh for lightmapping. Will regenerate normal maps for the [ArrayMesh]. Returns the index of the first surface with this name held within this [ArrayMesh]. If none are found, -1 is returned. Returns the length in indices of the index array in the requested surface (see [method add_surface_from_arrays]). Returns the length in vertices of the vertex array in the requested surface (see [method add_surface_from_arrays]). Returns the format mask of the requested surface (see [method add_surface_from_arrays]). Gets the name assigned to this surface. Returns the primitive type of the requested surface (see [method add_surface_from_arrays]). Removes a surface at position [code]surf_idx[/code], shifting greater surfaces one [code]surf_idx[/code] slot down. Sets a name for a given surface. Updates a specified region of mesh arrays on the GPU. [b]Warning:[/b] Only use if you know what you are doing. You can easily cause crashes by calling this function with improper arguments. Sets the blend shape mode to one of [enum Mesh.BlendShapeMode]. Overrides the [AABB] with one defined by user for use with frustum culling. Especially useful to avoid unexpected culling when using a shader to offset vertices. Default value used for index_array_len when no indices are present. Amount of weights/bone indices per vertex (always 4). [PoolVector3Array], [PoolVector2Array], or [Array] of vertex positions. [PoolVector3Array] of vertex normals. [PoolRealArray] of vertex tangents. Each element in groups of 4 floats, first 3 floats determine the tangent, and the last the binormal direction as -1 or 1. [PoolColorArray] of vertex colors. [PoolVector2Array] for UV coordinates. [PoolVector2Array] for second UV coordinates. [PoolRealArray] or [PoolIntArray] of bone indices. Each element in groups of 4 floats. [PoolRealArray] of bone weights. Each element in groups of 4 floats. [PoolIntArray] of integers used as indices referencing vertices, colors, normals, tangents, and textures. All of those arrays must have the same number of elements as the vertex array. No index can be beyond the vertex array size. When this index array is present, it puts the function into "index mode," where the index selects the *i*'th vertex, normal, tangent, color, UV, etc. This means if you want to have different normals or colors along an edge, you have to duplicate the vertices. For triangles, the index array is interpreted as triples, referring to the vertices of each triangle. For lines, the index array is in pairs indicating the start and end of each line. Represents the size of the [enum ArrayType] enum. Array format will include vertices (mandatory). Array format will include normals. Array format will include tangents. Array format will include a color array. Array format will include UVs. Array format will include another set of UVs. Array format will include bone indices. Array format will include bone weights. Index array will be used.