C# Class GAudio.StreamToTrackModule

Streams a mono stream to a GATPlayer Track.
Inheritance: AGATStreamObserver
ファイルを表示 Open project: gregzo/G-Audio

Public Properties

Property Type Description
exclusive bool
player GATPlayer
trackNumber int

Protected Properties

Property Type Description
_streamToTrack GATAudioThreadStreamToTrack

Public Methods

Method Description
Awake ( ) : void
OnDisable ( ) : void
OnEnable ( ) : void

Protected Methods

Method Description
Start ( ) : void

Method Details

Awake() public method

public Awake ( ) : void
return void

OnDisable() public method

public OnDisable ( ) : void
return void

OnEnable() public method

public OnEnable ( ) : void
return void

Start() protected method

protected Start ( ) : void
return void

Property Details

_streamToTrack protected_oe property

protected GATAudioThreadStreamToTrack,GAudio _streamToTrack
return GATAudioThreadStreamToTrack

exclusive public_oe property

If true, data from the stream is copied to the track, which is more efficient than mixing but overwrites any other audio.
public bool exclusive
return bool

player public_oe property

The player through which to route the stream. If null, the default player will be used.
public GATPlayer player
return GATPlayer

trackNumber public_oe property

The track number in the specified player through which to route the stream. Only one stream can be routed to a given track.
public int trackNumber
return int