Last active
January 18, 2018 00:58
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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