A collection of Wwise objects that can be referenced through an ID number.
Ejemplo n.º 1
0
 /// <summary>
 /// Imports objects from another collection into this collection.
 /// </summary>
 /// <param name="other">The WwiseObjectCollection to import objects from.</param>
 public void Import(WwiseObjectCollection other)
 {
     foreach (KeyValuePair <uint, IWwiseObject> objectPair in other._objects)
     {
         _objects[objectPair.Key] = objectPair.Value;
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Imports objects from another collection into this collection.
 /// </summary>
 /// <param name="other">The WwiseObjectCollection to import objects from.</param>
 public void Import(WwiseObjectCollection other)
 {
     foreach (KeyValuePair<uint, IWwiseObject> objectPair in other._objects)
         _objects[objectPair.Key] = objectPair.Value;
 }