If you were to graph the data you would see a squiggly line representing the audio wave form. Each data point is a measurement of that wave form.
What ports can I use it on?
1,2,7,8
Code
var waveForm = Magic.modules.sound.volume;
using Magic;
public class Demo : MonoBehaviour
{
// create a reference to the module
public Magic.Modules.SoundModule sound;
void Start()
{
}
void Update()
{
// access the property of the module
int waveForm = sound.volume;
}
}