Esempio n. 1
0
 public override AudioObject Play(string audioItemId, Transform parent = null, Vector3 point = default(Vector3))
 {
     if(wrappedService != null)
     {
         Debug.LogFormat("Playing: {0} in {1} at {2}",audioItemId, parent, point);
         return wrappedService.Play(audioItemId, parent, point);
     }
     return null;
 }