Enum RenderingServer.ArrayCustomFormat
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum RenderingServer.ArrayCustomFormat : long
Fields
Max = 8Represents the size of the RenderingServer.ArrayCustomFormat enum.
RFloat = 4Custom data array contains 32-bit-per-channel red color data. Values are floating-point in single precision.
RgFloat = 5Custom data array contains 32-bit-per-channel red/green color data. Values are floating-point in single precision.
RgHalf = 2Custom data array contains 16-bit-per-channel red/green color data. Values are floating-point in half precision.
RgbFloat = 6Custom data array contains 32-bit-per-channel red/green/blue color data. Values are floating-point in single precision.
Rgba8Snorm = 1Custom data array contains 8-bit-per-channel red/green/blue/alpha color data. Values are normalized, signed floating-point in the
[-1.0, 1.0]range.Rgba8Unorm = 0Custom data array contains 8-bit-per-channel red/green/blue/alpha color data. Values are normalized, unsigned floating-point in the
[0.0, 1.0]range.RgbaFloat = 7Custom data array contains 32-bit-per-channel red/green/blue/alpha color data. Values are floating-point in single precision.
RgbaHalf = 3Custom data array contains 16-bit-per-channel red/green/blue/alpha color data. Values are floating-point in half precision.