このページを含むバージョン:
このページを含まないバージョン:
PC システムのビープ音を再生します。
// Play beep sound on menu clickusing UnityEditor; using UnityEngine;public class BeepExample { [MenuItem("Examples/Play beep")] static void DoBeep() { EditorApplication.Beep(); } }