Declaration


public static AudioSequence PlayGroupWithDelay(string request, float delay, params IEditModule[] edits)
public static AudioSequence PlayGroupWithDelay(string request, float delay, float? volume = 1f, float? pitch = 1f, params IEditModule[] edits)
public static AudioSequence PlayGroupWithDelay(string[] request, GroupPlayMode playMode, float delay, params IEditModule[] edits)
public static AudioSequence PlayGroupWithDelay(string[] request, GroupPlayMode playMode, float delay, float? volume = 1f, float? pitch = 1f, params IEditModule[] edits)

Parameters


string request The key for the group to be played.
float delay The delay before the clips play.
params IEditModule[] edits An array of edits to apply to the clip. Is defines as params, so the elements do not needs to be in an array when defined.
string request The key for the group to be played.
float delay The delay before the clips play.
float volume The volume to set the clip to.
float pitch The pitch to set the clip to.
params IEditModule[] edits An array of edits to apply to the clip. Is defines as params, so the elements do not needs to be in an array when defined.
string[] request The key for the group to be played.
GroupPlayMode playMode The play mode for the group.
float delay The delay before the clips play.
params IEditModule[] edits An array of edits to apply to the clip. Is defines as params, so the elements do not needs to be in an array when defined.
string[] request The key for the group to be played.
GroupPlayMode playMode The play mode for the group.
float delay The delay before the clips play.
float volume The volume to set the clip to.
float pitch The pitch to set the clip to.
params IEditModule[] edits An array of edits to apply to the clip. Is defines as params, so the elements do not needs to be in an array when defined.

Returns


AudioSequence

The audio sequence that the clip is being played on.