示例#1
0
    public void SetColor(int colorIndex)
    {
        colorIndex = Mathf.Min(m_Colors.Count - 1, colorIndex);
        Color humanColor = m_Colors[colorIndex];

        RVEndView.Instance.SetTitleColor(humanColor);
        m_MainMenuView.SetTitleColor(humanColor);
        LoadingView.Instance.SetTitleColor(humanColor);

        SkinShopView.Instance.SetTitleColor(humanColor);
    }