版本:Unity 6 (6000.0)
语言English
  • C#

AudioSource.spread

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法采纳所有提交,但我们确实会阅读用户提出的每一条修改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public float spread;

描述

设置 3D 立体声或多声道声音在扬声器空间中的扩散角(以度为单位)。

0 = 所有声道的音频都位于同一个扬声器位置,为“单声道”。360 = 所有子声道都位于与其根据 3D 位置应位于的扬声器位置相反的扬声器位置。默认值为 0。

using UnityEngine;

public class Example : MonoBehaviour { // when any AudioSource goes trough this transform, it will set it as 'mono' // and will restore the value to 3D effect after exiting // Make sure the audio source has a collider. void OnTriggerEnter(Collider other) { AudioSource audio = other.GetComponent<AudioSource>();

if (audio) { audio.spread = 0; } }

void OnTriggerExit(Collider other) { AudioSource audio = other.GetComponent<AudioSource>();

if (audio) { audio.spread = 360; } } }