Ejemplo n.º 1
0
 /// <summary>
 /// Retrieves a bus using path.
 /// Path may be a path, such as bus:/SFX/Ambience, or an ID string, such as {d9982c58-a056-4e6c-b8e3-883854b4bffb}.
 /// </summary>
 public static Bus GetBus(string path)
 {
     Native.getBus(path, out var bus);
     return(new Bus(bus));
 }