:github_url: hide .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/4.2/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/4.2/doc/classes/ArrayMesh.xml. .. _class_ArrayMesh: ArrayMesh ========= **Inherits:** :ref:`Mesh` **<** :ref:`Resource` **<** :ref:`RefCounted` **<** :ref:`Object` :ref:`Mesh` type that provides utility for constructing a surface from arrays. .. rst-class:: classref-introduction-group Description ----------- The **ArrayMesh** is used to construct a :ref:`Mesh` by specifying the attributes as arrays. The most basic example is the creation of a single triangle: .. tabs:: .. code-tab:: gdscript var vertices = PackedVector3Array() 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(Mesh.ARRAY_MAX) arrays[Mesh.ARRAY_VERTEX] = vertices # Create the Mesh. arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) var m = MeshInstance3D.new() m.mesh = arr_mesh .. code-tab:: csharp var vertices = new Vector3[] { new Vector3(0, 1, 0), new Vector3(1, 0, 0), new Vector3(0, 0, 1), }; // Initialize the ArrayMesh. var arrMesh = new ArrayMesh(); var arrays = new Godot.Collections.Array(); arrays.Resize((int)Mesh.ArrayType.Max); arrays[(int)Mesh.ArrayType.Vertex] = vertices; // Create the Mesh. arrMesh.AddSurfaceFromArrays(Mesh.PrimitiveType.Triangles, arrays); var m = new MeshInstance3D(); m.Mesh = arrMesh; The :ref:`MeshInstance3D` is ready to be added to the :ref:`SceneTree` to be shown. See also :ref:`ImmediateMesh`, :ref:`MeshDataTool` and :ref:`SurfaceTool` for procedural geometry generation. \ **Note:** Godot uses clockwise `winding order `__ for front faces of triangle primitive modes. .. rst-class:: classref-introduction-group Tutorials --------- - :doc:`Procedural geometry using the ArrayMesh <../tutorials/3d/procedural_geometry/arraymesh>` .. rst-class:: classref-reftable-group Properties ---------- .. table:: :widths: auto +-------------------------------------------------+--------------------------------------------------------------------+----------------------------+ | :ref:`BlendShapeMode` | :ref:`blend_shape_mode` | ``1`` | +-------------------------------------------------+--------------------------------------------------------------------+----------------------------+ | :ref:`AABB` | :ref:`custom_aabb` | ``AABB(0, 0, 0, 0, 0, 0)`` | +-------------------------------------------------+--------------------------------------------------------------------+----------------------------+ | :ref:`ArrayMesh` | :ref:`shadow_mesh` | | +-------------------------------------------------+--------------------------------------------------------------------+----------------------------+ .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_blend_shape` **(** :ref:`StringName` name **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_surface_from_arrays` **(** :ref:`PrimitiveType` primitive, :ref:`Array` arrays, :ref:`Array[]` blend_shapes=[], :ref:`Dictionary` lods={}, |bitfield|\<:ref:`ArrayFormat`\> flags=0 **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_blend_shapes` **(** **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_surfaces` **(** **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_blend_shape_count` **(** **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`StringName` | :ref:`get_blend_shape_name` **(** :ref:`int` index **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`lightmap_unwrap` **(** :ref:`Transform3D` transform, :ref:`float` texel_size **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`regen_normal_maps` **(** **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_blend_shape_name` **(** :ref:`int` index, :ref:`StringName` name **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`surface_find_by_name` **(** :ref:`String` name **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`surface_get_array_index_len` **(** :ref:`int` surf_idx **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`surface_get_array_len` **(** :ref:`int` surf_idx **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |bitfield|\<:ref:`ArrayFormat`\> | :ref:`surface_get_format` **(** :ref:`int` surf_idx **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`surface_get_name` **(** :ref:`int` surf_idx **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PrimitiveType` | :ref:`surface_get_primitive_type` **(** :ref:`int` surf_idx **)** |const| | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`surface_set_name` **(** :ref:`int` surf_idx, :ref:`String` name **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`surface_update_attribute_region` **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`surface_update_skin_region` **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`surface_update_vertex_region` **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** | +---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Property Descriptions --------------------- .. _class_ArrayMesh_property_blend_shape_mode: .. rst-class:: classref-property :ref:`BlendShapeMode` **blend_shape_mode** = ``1`` .. rst-class:: classref-property-setget - void **set_blend_shape_mode** **(** :ref:`BlendShapeMode` value **)** - :ref:`BlendShapeMode` **get_blend_shape_mode** **(** **)** Sets the blend shape mode to one of :ref:`BlendShapeMode`. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_property_custom_aabb: .. rst-class:: classref-property :ref:`AABB` **custom_aabb** = ``AABB(0, 0, 0, 0, 0, 0)`` .. rst-class:: classref-property-setget - void **set_custom_aabb** **(** :ref:`AABB` value **)** - :ref:`AABB` **get_custom_aabb** **(** **)** Overrides the :ref:`AABB` with one defined by user for use with frustum culling. Especially useful to avoid unexpected culling when using a shader to offset vertices. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_property_shadow_mesh: .. rst-class:: classref-property :ref:`ArrayMesh` **shadow_mesh** .. rst-class:: classref-property-setget - void **set_shadow_mesh** **(** :ref:`ArrayMesh` value **)** - :ref:`ArrayMesh` **get_shadow_mesh** **(** **)** An optional mesh which is used for rendering shadows and can be used for the depth prepass. Can be used to increase performance of shadow rendering by using a mesh that only contains vertex position data (without normals, UVs, colors, etc.). .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_ArrayMesh_method_add_blend_shape: .. rst-class:: classref-method void **add_blend_shape** **(** :ref:`StringName` name **)** Adds name for a blend shape that will be added with :ref:`add_surface_from_arrays`. Must be called before surface is added. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_add_surface_from_arrays: .. rst-class:: classref-method void **add_surface_from_arrays** **(** :ref:`PrimitiveType` primitive, :ref:`Array` arrays, :ref:`Array[]` blend_shapes=[], :ref:`Dictionary` lods={}, |bitfield|\<:ref:`ArrayFormat`\> flags=0 **)** Creates a new surface. :ref:`Mesh.get_surface_count` will become the ``surf_idx`` for this new surface. Surfaces are created to be rendered using a ``primitive``, which may be any of the values defined in :ref:`PrimitiveType`. The ``arrays`` argument is an array of arrays. Each of the :ref:`Mesh.ARRAY_MAX` elements contains an array with some of the mesh data for this surface as described by the corresponding member of :ref:`ArrayType` or ``null`` if it is not used by the surface. For example, ``arrays[0]`` is the array of vertices. That first vertex sub-array is always required; the others are optional. Adding an index array puts this surface 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 an exact multiple of the vertex array's length, when multiple elements of a sub-array correspond to a single vertex) or be empty, except for :ref:`Mesh.ARRAY_INDEX` if it is used. The ``blend_shapes`` argument is an array of vertex data for each blend shape. Each element is an array of the same structure as ``arrays``, but :ref:`Mesh.ARRAY_VERTEX`, :ref:`Mesh.ARRAY_NORMAL`, and :ref:`Mesh.ARRAY_TANGENT` are set if and only if they are set in ``arrays`` and all other entries are ``null``. The ``lods`` argument is a dictionary with :ref:`float` keys and :ref:`PackedInt32Array` values. Each entry in the dictionary represents a LOD level of the surface, where the value is the :ref:`Mesh.ARRAY_INDEX` array to use for the LOD level and the key is roughly proportional to the distance at which the LOD stats being used. I.e., increasing the key of a LOD also increases the distance that the objects has to be from the camera before the LOD is used. The ``flags`` argument is the bitwise or of, as required: One value of :ref:`ArrayCustomFormat` left shifted by ``ARRAY_FORMAT_CUSTOMn_SHIFT`` for each custom channel in use, :ref:`Mesh.ARRAY_FLAG_USE_DYNAMIC_UPDATE`, :ref:`Mesh.ARRAY_FLAG_USE_8_BONE_WEIGHTS`, or :ref:`Mesh.ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY`. \ **Note:** When using indices, it is recommended to only use points, lines, or triangles. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_clear_blend_shapes: .. rst-class:: classref-method void **clear_blend_shapes** **(** **)** Removes all blend shapes from this **ArrayMesh**. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_clear_surfaces: .. rst-class:: classref-method void **clear_surfaces** **(** **)** Removes all surfaces from this **ArrayMesh**. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_get_blend_shape_count: .. rst-class:: classref-method :ref:`int` **get_blend_shape_count** **(** **)** |const| Returns the number of blend shapes that the **ArrayMesh** holds. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_get_blend_shape_name: .. rst-class:: classref-method :ref:`StringName` **get_blend_shape_name** **(** :ref:`int` index **)** |const| Returns the name of the blend shape at this index. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_lightmap_unwrap: .. rst-class:: classref-method :ref:`Error` **lightmap_unwrap** **(** :ref:`Transform3D` transform, :ref:`float` texel_size **)** Performs a UV unwrap on the **ArrayMesh** to prepare the mesh for lightmapping. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_regen_normal_maps: .. rst-class:: classref-method void **regen_normal_maps** **(** **)** Regenerates tangents for each of the **ArrayMesh**'s surfaces. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_set_blend_shape_name: .. rst-class:: classref-method void **set_blend_shape_name** **(** :ref:`int` index, :ref:`StringName` name **)** Sets the name of the blend shape at this index. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_find_by_name: .. rst-class:: classref-method :ref:`int` **surface_find_by_name** **(** :ref:`String` name **)** |const| Returns the index of the first surface with this name held within this **ArrayMesh**. If none are found, -1 is returned. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_get_array_index_len: .. rst-class:: classref-method :ref:`int` **surface_get_array_index_len** **(** :ref:`int` surf_idx **)** |const| Returns the length in indices of the index array in the requested surface (see :ref:`add_surface_from_arrays`). .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_get_array_len: .. rst-class:: classref-method :ref:`int` **surface_get_array_len** **(** :ref:`int` surf_idx **)** |const| Returns the length in vertices of the vertex array in the requested surface (see :ref:`add_surface_from_arrays`). .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_get_format: .. rst-class:: classref-method |bitfield|\<:ref:`ArrayFormat`\> **surface_get_format** **(** :ref:`int` surf_idx **)** |const| Returns the format mask of the requested surface (see :ref:`add_surface_from_arrays`). .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_get_name: .. rst-class:: classref-method :ref:`String` **surface_get_name** **(** :ref:`int` surf_idx **)** |const| Gets the name assigned to this surface. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_get_primitive_type: .. rst-class:: classref-method :ref:`PrimitiveType` **surface_get_primitive_type** **(** :ref:`int` surf_idx **)** |const| Returns the primitive type of the requested surface (see :ref:`add_surface_from_arrays`). .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_set_name: .. rst-class:: classref-method void **surface_set_name** **(** :ref:`int` surf_idx, :ref:`String` name **)** Sets a name for a given surface. .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_update_attribute_region: .. rst-class:: classref-method void **surface_update_attribute_region** **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_update_skin_region: .. rst-class:: classref-method void **surface_update_skin_region** **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ArrayMesh_method_surface_update_vertex_region: .. rst-class:: classref-method void **surface_update_vertex_region** **(** :ref:`int` surf_idx, :ref:`int` offset, :ref:`PackedByteArray` data **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)` .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`