AudioSource.velocityUpdateMode 速度更新模式


var velocityUpdateMode : AudioVelocityUpdateMode

Description描述

Whether the Audio Source should be updated in the fixed or dynamic update.

AudioSource是否应该以固定或动态的方式更新?

Make sure this is set to update in the same   update loop as the Audio Source is moved in if you are experiencing   problems with Doppler effect simulation for this source.  The default setting will automatically set the source to be updated in   the fixed update loop if it is attached to a rigidbody, and dynamic   otherwise.

如果你遇到了这个源的多普勒效应模拟问题,请确保设置这个更新与AudioSource的移动在同一循环内。如果它被附加到一个刚体,默认设置将自动设置该源以固定的更新周期更新,其他方式以动态方式。

  • C#

  • JavaScript

using UnityEngine;using System.Collections;public class example : MonoBehaviour {void Awake() {audio.velocityUpdateMode = AudioVelocityUpdateMode.Fixed;}}
audio.velocityUpdateMode = AudioVelocityUpdateMode.Fixed;


,