/*----------------------------------------------------------
     * -------------------- TEXTURE UPDATING --------------------
     * ----------------------------------------------------------
     *
     * Update picker image textures that show gradients of colors
     * that the user can pick.
     */

    private void UpdateTextures()
    {
        foreach (PickerType type in Enum.GetValues(typeof(PickerType)))
        {
            if (staticMode || AS.Get((int)type).overrideStatic)
            {
                UpdateStatic(type);
            }
            else
            {
                UpdateDynamic(type);
            }
        }
    }