AudioVelocityUpdateMode
Describes when an AudioSource or AudioListener is updated.
Read time 1 minuteLast updated 9 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.AudioModule
public enum AudioVelocityUpdateMode
Fields
Value | Description |
|---|---|
| Auto | Updates the source or listener in the MonoBehaviour.FixedUpdate() loop if it is attached to a Rigidbody, dynamic MonoBehaviour.Update() otherwise. |
| Dynamic | Updates the source or listener in the dynamic MonoBehaviour.Update() loop. |
| Fixed | Updates the source or listener in the MonoBehaviour.FixedUpdate() loop. |