/// <summary>
 /// Subscribes to nameChanged, childAdded, childRemoved, and selectionChanged WAAPI events in order to keep the picker in sync with the Wwise project explorer.
 /// </summary>
 public void SubscribeTopics()
 {
     AkWaapiUtilities.Subscribe([email protected], OnWaapiRenamed, SubscriptionHandshake);
     AkWaapiUtilities.Subscribe([email protected], OnWaapiChildAdded, SubscriptionHandshake);
     AkWaapiUtilities.Subscribe([email protected], OnWaapiChildRemoved, SubscriptionHandshake);
     AkWaapiUtilities.Subscribe(ak.wwise.ui.selectionChanged, OnWwiseSelectionChanged, SubscriptionHandshake);
 }