var channels : int
Description
Channels in audio clip (Read Only)
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
Debug.Log(audio.clip.channels);
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
Debug.Log(audio.clip.channels)