1
Cách gửi giọng nói qua mạng Unity - UNET
Tôi có thể Ghi và Chạy Âm thanh từ Micrô của mình bằng đoạn mã này: void OnGUI() { if (GUI.Button(new Rect(0, 0, 100, 20), "record")) { // Microphone.End(Microphone.devices[0]); audsourceAttached.clip = Microphone.Start(Microphone.devices[0], false, 3, 44100); } if (GUI.Button(new Rect(0, 30, 100, 20), "Stop")) { //Microphone.End(Microphone.devices[0]); audsourceAttached.Play(); } } Bây giờ …