SndBuf buf => dac;
// This will work:
// "C:/Users/Public/Documents/Unity Projects/ChuckTest/Assets/StreamingAssets/impact.wav" => buf.read;
// This won't (because of words "афина" and "Новая папка" presumably):
// "C:/Users/афина/Desktop/Новая папка/impact.wav" => buf.read;
// With console message:
// [chuck](via SndBuf): cannot open file 'C:/Users/афина/Desktop/Новая папка/impact.wav'...
while( true )
{
// set playback position to beginning
0 => buf.pos;
// randomize playback rate
Math.random2f(.75,1.25) => buf.rate;
// randomize time
500::ms => now;
}