Versions with this page:
Versions without this page:
Plays system beep sound.
// Play beep sound on menu clickusing UnityEditor; using UnityEngine;public class BeepExample { [MenuItem("Examples/Play beep")] static void DoBeep() { EditorApplication.Beep(); } }