Creates a new surface. Surfaces are created to be rendered using a "primitive", which may be PRIMITIVE_POINTS, PRIMITIVE_LINES, PRIMITIVE_LINE_STRIP, PRIMITIVE_LINE_LOOP, PRIMITIVE_TRIANGLES, PRIMITIVE_TRIANGLE_STRIP, PRIMITIVE_TRIANGLE_FAN. See [Mesh] for details. (As a note, when using indices, it is recommended to only use points, lines or triangles). [method get_surface_count] will become the surf_idx 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 [code]ARRAY_INDEX[/code] 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. Godot uses clockwise winding order for front faces of triangle primitive modes. Centers the geometry. Remove all blend shapes from this [code]ArrayMesh[/code]. Returns the number of blend shapes that the [code]ArrayMesh[/code] holds. Returns the name of the blend shape at this index. Will perform a UV unwrap on the [code]ArrayMesh[/code] to prepare the mesh for lightmapping. Will regenerate normal maps for the [code]ArrayMesh[/code]. Return the index of the first surface with this name held within this [code]ArrayMesh[/code]. If none are found -1 is returned. Return the length in indices of the index array in the requested surface (see [method add_surface_from_arrays]). Return the length in vertices of the vertex array in the requested surface (see [method add_surface_from_arrays]). Return the format mask of the requested surface (see [method add_surface_from_arrays]). Get the name assigned to this surface. Return the primitive type of the requested surface (see [method add_surface_from_arrays]). Remove a surface at position surf_idx, shifting greater surfaces one surf_idx slot down. Set a [Material] for a given surface. Surface will be rendered using this material. Set a name for a given surface. An overriding bounding box for this mesh. Default value used for index_array_len when no indices are present. Amount of weights/bone indices per vertex (always 4). Vertex array (array of [Vector3] vertices). Normal array (array of [Vector3] normals). Tangent array, array of groups of 4 floats. first 3 floats determine the tangent, and the last the binormal direction as -1 or 1. Vertex array (array of [Color] colors). UV array (array of [Vector3] UVs or float array of groups of 2 floats (u,v)). Second UV array (array of [Vector3] UVs or float array of groups of 2 floats (u,v)). Array of bone indices, as a float array. Each element in groups of 4 floats. Array of bone weights, as a float array. Each element in groups of 4 floats. [Array] 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. 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.