示例#1
0
    public override void ResumeAllAudiosInCategory(string categoryId)
    {
        AudioCategory ac = GetCategory(categoryId);

        if (ac != null)
        {
            ac.ResumeAllAudios();
        }
        else
        {
            if (_isLogged)
            {
                Debug.LogFormat(this, "Audio Manager Failed to resume audios in category[{0}].", categoryId);
            }
        }
    }