Method | Description | |
---|---|---|
Add ( IWwiseObject obj ) : void |
Adds an object to the collection so that it can be referenced by its ID number.
|
|
Clear ( ) : void |
Removes all objects from the collection.
|
|
Dispatch ( uint id, IWwiseObjectVisitor visitor ) : bool |
Finds a Wwise object by ID number and then passes it to an IWwiseObjectVisitor.
|
|
Find ( uint id ) : IWwiseObject |
Finds a Wwise object by ID number.
|
|
Import ( |
Imports objects from another collection into this collection.
|
public Add ( IWwiseObject obj ) : void | ||
obj | IWwiseObject | The IWwiseObject to store. |
return | void |
public Dispatch ( uint id, IWwiseObjectVisitor visitor ) : bool | ||
id | uint | The ID number of the object to find. |
visitor | IWwiseObjectVisitor | The IWwiseObjectVisitor to pass the object to if it is found. |
return | bool |
public Find ( uint id ) : IWwiseObject | ||
id | uint | The ID number of the object to find. |
return | IWwiseObject |
public Import ( |
||
other | The WwiseObjectCollection to import objects from. | |
return | void |