The second argument to AudioClip.Create is the total number of samples. You’ve set it to 320, at 44100 samples per second that results in a total length of 0.007 seconds. You’ll need to set the number of samples to how long you want your clip to be (e.g. samples = duration * samples per second
).
1 Like