Enum gltf::mesh::Colors
[−]
pub enum Colors {
RgbU8(Iter<[u8; 3]>),
RgbaU8(Iter<[u8; 4]>),
RgbU16(Iter<[u16; 3]>),
RgbaU16(Iter<[u16; 4]>),
RgbF32(Iter<[f32; 3]>),
RgbaF32(Iter<[f32; 4]>),
}Vertex colors.
Variants
RgbU8(Iter<[u8; 3]>)RGB vertex color of type [u8; 3]>.
RgbaU8(Iter<[u8; 4]>)RGBA vertex color of type [u8; 4]>.
RgbU16(Iter<[u16; 3]>)RGB vertex color of type [u16; 3]>.
RgbaU16(Iter<[u16; 4]>)RGBA vertex color of type [u16; 4]>.
RgbF32(Iter<[f32; 3]>)RGB vertex color of type [f32; 3].
RgbaF32(Iter<[f32; 4]>)RGBA vertex color of type [f32; 4].