Skip to content

Instantly share code, notes, and snippets.

@QuantumCalzone
Last active January 18, 2018 00:58
Show Gist options
  • Save QuantumCalzone/b42e81646cf06e27a7bb62daa3c8025c to your computer and use it in GitHub Desktop.
Save QuantumCalzone/b42e81646cf06e27a7bb62daa3c8025c to your computer and use it in GitHub Desktop.
Put this script in your Editor folder to be notified via your OS's default sound when Unity is about done compiling
using UnityEditor;
public class BeepOnScriptsReloaded {
[UnityEditor.Callbacks.DidReloadScripts]
private static void OnScriptsReloaded() { EditorApplication.Beep(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment