Version: 2017.2
public float spread ;

설명

Sets the spread angle (in degrees) of a 3d stereo or multichannel sound in speaker space.

0 = all sound channels are located at the same speaker location and is 'mono'. 360 = all subchannels are located at the opposite speaker location to the speaker location that it should be according to 3D position. Default = 0.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { 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; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961