class-description NEWS COMMUNITY STORE TUTORIALS SIGN UP LOGIN LOGOUT ROKOJORI NEWSLETTER SIGN UP LOGIN LOGOUT NEWS COMMUNITY STORE TUTORIALS TOGGLE FULLSCREEN VOLLBILD AN/AUS ObjectRefCountedResource MultiMesh
Provides high-performance drawing of a mesh multiple times using GPU instancing.

MultiMesh provides low-level mesh instancing. Drawing thousands of MeshInstance3D nodes can be slow, since each object is submitted to the GPU then drawn individually.

MultiMesh is much faster as 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 from each other, performance may be reduced as every single instance will always render (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.

Enum TransformFormat<>():Enum

TRANSFORM_2D = 0

Use this when using 2D transforms.


TRANSFORM_3D = 1

Use this when using 3D transforms.

PackedFloat32Array buffer<>():PackedFloat32Array

There is currently no description for this property. Please help us by contributing one!

PackedColorArray color_array<>():PackedColorArray

See set_instance_color.

PackedColorArray custom_data_array<>():PackedColorArray

See set_instance_custom_data.

int instance_count<>():int

Number of instances that will get drawn. This clears and (re)sizes the buffers. Setting data format or flags afterwards will have no effect.

By default, all instances are drawn but you can limit this with visible_instance_count.

Mesh mesh<>():Mesh

Mesh resource to be instanced.

The looks of the individual instances can be modified using set_instance_color and set_instance_custom_data.

PackedVector2Array transform_2d_array<>():PackedVector2Array

See set_instance_transform_2d.

PackedVector3Array transform_array<>():PackedVector3Array

See set_instance_transform.

TransformFormat transform_format<>():TransformFormat

Format of transform used to transform mesh, either 2D or 3D.

bool use_colors<>():bool

If true, the MultiMesh will use color data (see set_instance_color). Can only be set when instance_count is 0 or less. This means that you need to call this method before setting the instance count, or temporarily reset it to 0.

bool use_custom_data<>():bool

If true, the MultiMesh will use custom data (see set_instance_custom_data). Can only be set when instance_count is 0 or less. This means that you need to call this method before setting the instance count, or temporarily reset it to 0.

int visible_instance_count<>():int

Limits the number of instances drawn, -1 draws all instances. Changing this does not change the sizes of the buffers.

AABB get_aabb<>():AABB

Returns the visibility axis-aligned bounding box in local space.

Color get_instance_color<>( int instance=, instance:int=, ):Color

Gets a specific instance's color multiplier.

Color get_instance_custom_data<>( int instance=, instance:int=, ):Color

Returns the custom data that has been set for a specific instance.

Transform3D get_instance_transform<>( int instance=, instance:int=, ):Transform3D

Returns the Transform3D of a specific instance.

Transform2D get_instance_transform_2d<>( int instance=, instance:int=, ):Transform2D

Returns the Transform2D of a specific instance.

void set_instance_color<>( int instance=, instance:int=, Color color=, color:Color=, ):void

Sets the color of a specific instance by multiplying the mesh's existing vertex colors. This allows for different color tinting per instance.

For the color to take effect, ensure that use_colors is true on the MultiMesh and BaseMaterial3D.vertex_color_use_as_albedo is true on the material. If you intend to set an absolute color instead of tinting, make sure the material's albedo color is set to pure white (Color(1, 1, 1)).

void set_instance_custom_data<>( int instance=, instance:int=, Color custom_data=, custom_data:Color=, ):void

Sets custom data for a specific instance. Although Color is used, it is just a container for 4 floating point numbers.

For the custom data to be used, ensure that use_custom_data is true.

This custom instance data has to be manually accessed in your custom shader using INSTANCE_CUSTOM.

void set_instance_transform<>( int instance=, instance:int=, Transform3D transform=, transform:Transform3D=, ):void

Sets the Transform3D for a specific instance.

void set_instance_transform_2d<>( int instance=, instance:int=, Transform2D transform=, transform:Transform2D=, ):void

Sets the Transform2D for a specific instance.




All social media brands are registrated trademarks and belong to their respective owners.





CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
We are using cookies on this site. Read more... Wir benutzen Cookies auf dieser Seite. Mehr lesen...