Declaration
public static AudioSequence PlayGroup(string request, params IEditModule[] edits)
public static AudioSequence PlayGroup(string request, float? volume = 1f, float? pitch = 1f, params IEditModule[] edits)
public static AudioSequence PlayGroup(string[] request, GroupPlayMode playMode, params IEditModule[] edits)
public static AudioSequence PlayGroup(string[] request, GroupPlayMode playMode, float? volume = 1f, float? pitch = 1f, params IEditModule[] edits)
Parameters
string request |
The key for the group to be played. |
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 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. |
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 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.