(index)
| 44 | } |
| 45 | |
| 46 | function play(index) { |
| 47 | speaker.stop(); |
| 48 | speaker.enqueue(0, AudioOut.Flush); |
| 49 | speaker.enqueue(0, AudioOut.Samples, new Resource(clips[index] + ".maud")); |
| 50 | speaker.enqueue(0, AudioOut.Callback, 0); |
| 51 | speaker.start(); |
| 52 | } |
| 53 | |
| 54 | const value = [0, 0, 0]; |
| 55 | let step = 15; |