SoundTrigger Functions
Reference of all the SoundTrigger functions
Play
// Plays the SoundEvent at the position of the owner Transform
public void Play();
public void Play(SoundTag localSoundTag);
public void Play(params SoundParameterInternals[] soundParameterInternals);
public void Play(SoundTag localSoundTag, params SoundParameterInternals[] soundParameterInternals);Parameters
PlayAtPosition
// Plays the SoundEvent at the Vector3 position with another Transform as the owner
public void PlayAtPosition(Vector3 position);
public void PlayAtPosition(Vector3 position, SoundTag localSoundTag);
public void PlayAtPosition(Vector3 position, params SoundParameterInternals[] soundParameterInternals);
public void PlayAtPosition(Vector3 position, SoundTag localSoundTag, params SoundParameterInternals[] soundParameterInternals);
// Plays the SoundEvent at the Transform position with another Transform as the owner
public void PlayAtPosition(Transform position);
public void PlayAtPosition(Transform position, SoundTag localSoundTag);
public void PlayAtPosition(Transform position, params SoundParameterInternals[] soundParameterInternals);
public void PlayAtPosition(Transform position, SoundTag localSoundTag, params SoundParameterInternals[] soundParameterInternals);Parameters
Stop
Parameters
Pause and Unpause
Parameters
Get State
Load or Unload Audio Data
Last updated