AmbienceExample
using System.Collections;
Back
using System.Collections.Generic;
using UnityEngine;
public class AmbienceExample : MonoBehaviour {
FMOD.Studio.EventInstance AE;
void Start () {
AE = FMODUnity.RuntimeManager.CreateInstance("Event:/Ambience");
AE.start();
AE.release();
}
}