Enum Mesh.ArrayCustomFormat
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum Mesh.ArrayCustomFormat : long
Fields
Max = 8Represents the size of the Mesh.ArrayCustomFormat enum.
RFloat = 4Indicates this custom channel contains full float colors, in a float[]. Only the red channel is used.
RgFloat = 5Indicates this custom channel contains full float colors, in a float[]. Only red and green channels are used.
RgHalf = 2Indicates this custom channel contains half precision float colors, encoded as byte[]. Only red and green channels are used.
RgbFloat = 6Indicates this custom channel contains full float colors, in a float[]. Only red, green and blue channels are used.
Rgba8Snorm = 1Indicates this custom channel contains signed normalized byte colors from -1 to 1, encoded as byte[].
Rgba8Unorm = 0Indicates this custom channel contains unsigned normalized byte colors from 0 to 1, encoded as byte[].
RgbaFloat = 7Indicates this custom channel contains full float colors, in a float[].
RgbaHalf = 3Indicates this custom channel contains half precision float colors, encoded as byte[].