Version: 2017.1

AudioSource.SetScheduledStartTime

매뉴얼로 전환
public void SetScheduledStartTime (double time);

파라미터

time Time in seconds.

설명

Changes the time at which a sound that has already been scheduled to play will start.

Notice that depending on the timing not all rescheduling requests can be fulfilled.

One interesting use case for this is stinger sound effects that are initiated by game events, but that you also want to be synchronized to specific beats in music. Then this function can be used to defer the stinger until the next musical transition.

Note: In general it is better to use PlayScheduled to cue up audio. Only use SetScheduledStartTime if you have scheduled an audio clip to play in the future and you need to change the time at which it starts. Calling SetScheduledStartTime will not cause an un-scheduled audio clip to play.

See Also: PlayScheduled.