Color Sets - WIP
The attribute names with "colorSet" store vertex color data. Color set attribute data is stored as RGBA colors with unsigned integer values from 0 to 255. The integer values are then converted to floating point values in the range 0.0 to scale where scale depends on the type of color set. The Vertex Attribute page on the main repository contains a table of color set attributes and their scale values.
Whether or not the mesh's color set attribute data is used depends on the shader. For example, fighter meshes commonly contain data for a colorSet1 attribute but use a shader that never references colorSet1. The latest version of SSBH Editor enables or disables color set rendering based on the shader listed in the material.
colorSet1
colorSet2
colorSet3
colorSet4
colorSet5
(RGB)
Texture Blend (Alpha)


result = mix(texture0.rgb, texture1.rgb, colorSet5.a * 3.0);