MultiMeshCustomDataFormatEnum Enumeration |
[Missing <summary> documentation for "T:Godot.MultiMesh.CustomDataFormatEnum"]
Namespace: Godot
public enum CustomDataFormatEnum
Member name | Value | Description | |
---|---|---|---|
None | 0 | Use when you are not using per-instance custom data. | |
Data8bit | 1 | 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. | |
Float | 2 | The Color passed into SetInstanceCustomData(Int32, Color) will use 4 floats. Use this for highest precision. |