Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

AutoUpdates the source or listener in the MonoBehaviour.FixedUpdate() loop if it is attached to a Rigidbody, dynamic MonoBehaviour.Update() otherwise.
DynamicUpdates the source or listener in the dynamic MonoBehaviour.Update() loop.
FixedUpdates the source or listener in the MonoBehaviour.FixedUpdate() loop.