Debug.Log Extensions
Documentation (1.1.9)
|
|
static |
Logs a message to the Console on the given channels, formed by inserting the values of args zero or more objects into a format text string.
public IEnumerator PlaySoundEffect(float delay, AudioId audioId) { Debug.Log(Channel.Audio, Channel.Sfx, "Playing {0} in {1} seconds.", audioId, delay);
yield return new WaitForSeconds(delay);
audioController.Play(audioId); }
channel1 | The first channel to which the message belongs. |
channel2 | The second channel to which the message belongs. |
format | A composite format string based on which the message is generated. |
Each format item inside the string is replaced by the value of the argument at the same index.
A format item consists of braces ("{" and "}") containing the index of the argument whose value should be inserted into the format string at that location.
args | Zero or more objects to be converted to string and inserted into the format composite format string. |