Files
CortexCore 13ffc9fd64 1
2024-06-03 10:11:43 +08:00

20 lines
407 B
C#

using NodeCanvas.Framework;
using ParadoxNotion.Design;
using UnityEngine;
namespace NodeCanvas.Tasks.Actions
{
[Category("✫ Utility")]
[Description("Plays a 'Beep' in editor only")]
public class DebugBeep : ActionTask
{
protected override void OnExecute() {
#if UNITY_EDITOR
UnityEditor.EditorApplication.Beep();
#endif
EndAction();
}
}
}