:github_url: hide .. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the MultiMesh.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_MultiMesh: MultiMesh ========= **Inherits:** :ref:`Resource` **<** :ref:`Reference` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Provides high performance mesh instancing. Properties ---------- +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`ColorFormat` | :ref:`color_format` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`CustomDataFormat` | :ref:`custom_data_format` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`int` | :ref:`instance_count` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`Mesh` | :ref:`mesh` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`TransformFormat` | :ref:`transform_format` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ | :ref:`int` | :ref:`visible_instance_count` | +----------------------------------------------------------+--------------------------------------------------------------------------------+ Methods ------- +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`AABB` | :ref:`get_aabb` **(** **)** const | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`get_instance_color` **(** :ref:`int` instance **)** const | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`get_instance_custom_data` **(** :ref:`int` instance **)** const | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Transform` | :ref:`get_instance_transform` **(** :ref:`int` instance **)** const | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Transform2D` | :ref:`get_instance_transform_2d` **(** :ref:`int` instance **)** const | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_instance_color` **(** :ref:`int` instance, :ref:`Color` color **)** | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_instance_custom_data` **(** :ref:`int` instance, :ref:`Color` custom_data **)** | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_instance_transform` **(** :ref:`int` instance, :ref:`Transform` transform **)** | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_instance_transform_2d` **(** :ref:`int` instance, :ref:`Transform2D` transform **)** | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Enumerations ------------ .. _enum_MultiMesh_TransformFormat: .. _class_MultiMesh_constant_TRANSFORM_2D: .. _class_MultiMesh_constant_TRANSFORM_3D: enum **TransformFormat**: - **TRANSFORM_2D** = **0** --- Use this when using 2D transforms. - **TRANSFORM_3D** = **1** --- Use this when using 3D transforms. ---- .. _enum_MultiMesh_ColorFormat: .. _class_MultiMesh_constant_COLOR_NONE: .. _class_MultiMesh_constant_COLOR_8BIT: .. _class_MultiMesh_constant_COLOR_FLOAT: enum **ColorFormat**: - **COLOR_NONE** = **0** --- Use when you are not using per-instance :ref:`Color`\ s. - **COLOR_8BIT** = **1** --- Compress :ref:`Color` data into 8 bits when passing to shader. This uses less memory and can be faster, but the :ref:`Color` loses precision. - **COLOR_FLOAT** = **2** --- The :ref:`Color` passed into :ref:`set_instance_color` will use 4 floats. Use this for highest precision :ref:`Color`. ---- .. _enum_MultiMesh_CustomDataFormat: .. _class_MultiMesh_constant_CUSTOM_DATA_NONE: .. _class_MultiMesh_constant_CUSTOM_DATA_8BIT: .. _class_MultiMesh_constant_CUSTOM_DATA_FLOAT: enum **CustomDataFormat**: - **CUSTOM_DATA_NONE** = **0** --- Use when you are not using per-instance custom data. - **CUSTOM_DATA_8BIT** = **1** --- Compress custom_data into 8 bits when passing to shader. This uses less memory and can be faster, but loses precision. - **CUSTOM_DATA_FLOAT** = **2** --- The :ref:`Color` passed into :ref:`set_instance_custom_data` will use 4 floats. Use this for highest precision. Description ----------- MultiMesh provides low level mesh instancing. Drawing thousands of :ref:`MeshInstance` nodes can be slow because each object is submitted to the GPU to be drawn individually. MultiMesh is much faster because it can draw thousands of instances with a single draw call, resulting in less API overhead. As a drawback, if the instances are too far away of each other, performance may be reduced as every single instance will always rendered (they are spatially indexed as one, for the whole object). Since instances may have any behavior, the AABB used for visibility must be provided by the user. Tutorials --------- - :doc:`../tutorials/3d/vertex_animation/animating_thousands_of_fish` Property Descriptions --------------------- .. _class_MultiMesh_property_color_format: - :ref:`ColorFormat` **color_format** +----------+-------------------------+ | *Setter* | set_color_format(value) | +----------+-------------------------+ | *Getter* | get_color_format() | +----------+-------------------------+ Format of colors in color array that gets passed to shader. ---- .. _class_MultiMesh_property_custom_data_format: - :ref:`CustomDataFormat` **custom_data_format** +----------+-------------------------------+ | *Setter* | set_custom_data_format(value) | +----------+-------------------------------+ | *Getter* | get_custom_data_format() | +----------+-------------------------------+ Format of custom data in custom data array that gets passed to shader. ---- .. _class_MultiMesh_property_instance_count: - :ref:`int` **instance_count** +----------+---------------------------+ | *Setter* | set_instance_count(value) | +----------+---------------------------+ | *Getter* | get_instance_count() | +----------+---------------------------+ Number of instances that will get drawn. ---- .. _class_MultiMesh_property_mesh: - :ref:`Mesh` **mesh** +----------+-----------------+ | *Setter* | set_mesh(value) | +----------+-----------------+ | *Getter* | get_mesh() | +----------+-----------------+ Mesh to be drawn. ---- .. _class_MultiMesh_property_transform_format: - :ref:`TransformFormat` **transform_format** +----------+-----------------------------+ | *Setter* | set_transform_format(value) | +----------+-----------------------------+ | *Getter* | get_transform_format() | +----------+-----------------------------+ Format of transform used to transform mesh, either 2D or 3D. ---- .. _class_MultiMesh_property_visible_instance_count: - :ref:`int` **visible_instance_count** +----------+-----------------------------------+ | *Setter* | set_visible_instance_count(value) | +----------+-----------------------------------+ | *Getter* | get_visible_instance_count() | +----------+-----------------------------------+ Method Descriptions ------------------- .. _class_MultiMesh_method_get_aabb: - :ref:`AABB` **get_aabb** **(** **)** const Returns the visibility AABB. ---- .. _class_MultiMesh_method_get_instance_color: - :ref:`Color` **get_instance_color** **(** :ref:`int` instance **)** const Get the color of a specific instance. ---- .. _class_MultiMesh_method_get_instance_custom_data: - :ref:`Color` **get_instance_custom_data** **(** :ref:`int` instance **)** const Returns the custom data that has been set for a specific instance. ---- .. _class_MultiMesh_method_get_instance_transform: - :ref:`Transform` **get_instance_transform** **(** :ref:`int` instance **)** const Returns the :ref:`Transform` of a specific instance. ---- .. _class_MultiMesh_method_get_instance_transform_2d: - :ref:`Transform2D` **get_instance_transform_2d** **(** :ref:`int` instance **)** const Returns the :ref:`Transform2D` of a specific instance. ---- .. _class_MultiMesh_method_set_instance_color: - void **set_instance_color** **(** :ref:`int` instance, :ref:`Color` color **)** Set the color of a specific instance. For the color to take effect, ensure that :ref:`color_format` is non-``null`` on the ``MultiMesh`` and :ref:`SpatialMaterial.vertex_color_use_as_albedo` is ``true`` on the material. ---- .. _class_MultiMesh_method_set_instance_custom_data: - void **set_instance_custom_data** **(** :ref:`int` instance, :ref:`Color` custom_data **)** Set custom data for a specific instance. Although :ref:`Color` is used, it is just a container for 4 numbers. ---- .. _class_MultiMesh_method_set_instance_transform: - void **set_instance_transform** **(** :ref:`int` instance, :ref:`Transform` transform **)** Set the transform for a specific instance. ---- .. _class_MultiMesh_method_set_instance_transform_2d: - void **set_instance_transform_2d** **(** :ref:`int` instance, :ref:`Transform2D` transform **)**