Click or drag to resize

MultiMeshCustomDataFormatEnum Enumeration

[Missing <summary> documentation for "T:Godot.MultiMesh.CustomDataFormatEnum"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum CustomDataFormatEnum
Members
  Member nameValueDescription
None0

Use when you are not using per-instance custom data.

Data8bit1

Compress custom_data into 8 bits when passing to shader. This uses less memory and can be faster, but loses precision and range. Floats packed into 8 bits can only represent values between 0 and 1, numbers outside that range will be clamped.

Float2

The Color passed into SetInstanceCustomData(Int32, Color) will use 4 floats. Use this for highest precision.

See Also