Skip to content

Instantly share code, notes, and snippets.

@Kainkun
Kainkun / CompileIndicator.cs
Last active July 21, 2025 21:15 — forked from JavadocMD/CompileIndicator.cs
A Unity script to play a sound effect when script compiling starts and ends.
#if UNITY_EDITOR
using System;
using System.Reflection;
using UnityEditor;
using UnityEngine;
namespace Editor
{
[InitializeOnLoad]