SoundPicker
SoundPicker is an easy way to modify SoundEvents in your own scripts


Last updated
SoundPicker is an easy way to modify SoundEvents in your own scripts


Last updated
using UnityEngine;
using Sonity;
public class ExampleSoundPicker : MonoBehaviour {
public SoundPicker soundPicker;
void Start() {
// Plays the SoundPicker at the position of the transform
soundPicker.Play(transform);
}
}