C# 클래스 TagTool.Sounds.WwiseObjectCollection

A collection of Wwise objects that can be referenced through an ID number.
파일 보기 프로젝트 열기: TheGuardians/TagTool 1 사용 예제들

공개 메소드들

메소드 설명
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 ( WwiseObjectCollection other ) : void

Imports objects from another collection into this collection.

메소드 상세

Add() 공개 메소드

Adds an object to the collection so that it can be referenced by its ID number.
public Add ( IWwiseObject obj ) : void
obj IWwiseObject The IWwiseObject to store.
리턴 void

Clear() 공개 메소드

Removes all objects from the collection.
public Clear ( ) : void
리턴 void

Dispatch() 공개 메소드

Finds a Wwise object by ID number and then passes it to an IWwiseObjectVisitor.
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.
리턴 bool

Find() 공개 메소드

Finds a Wwise object by ID number.
public Find ( uint id ) : IWwiseObject
id uint The ID number of the object to find.
리턴 IWwiseObject

Import() 공개 메소드

Imports objects from another collection into this collection.
public Import ( WwiseObjectCollection other ) : void
other WwiseObjectCollection The WwiseObjectCollection to import objects from.
리턴 void