Trying to add script to a button to load a new audio file at runtime using file explorer.
public void LoadAudioFromFile()
{
Debug.Log("Load Called");
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo = new System.Diagnostics.ProcessStartInfo("explorer.exe");
p.Start();
}
Trying to add script to a button to load a new audio file at runtime using file explorer.