Ejemplo n.º 1
0
 public override bool CreateNewCategory(out AudioCategory acCategory, string categoryId, AudioObject aoPrefab, float volume = 1.0f, bool startEnabled = true)
 {
     if (wrappedService != null)
     {
         Debug.LogFormat("Create New Category: {0} with prefab:{1} vol:{2} startStatus:{3}", categoryId, aoPrefab.name, volume, startEnabled);
         return wrappedService.CreateNewCategory(out acCategory, categoryId, aoPrefab, volume, startEnabled);
     }
     acCategory = null;
     return false;
 }