コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】Progress が実行中なら Unity を再生できなくするエディタ拡張

概要

using UnityEditor;
using UnityEngine;

[InitializeOnLoad]
public static class Example
{
    static Example()
    {
        EditorApplication.playModeStateChanged += OnChanged;
    }

    private static void OnChanged( PlayModeStateChange change )
    {
        if ( !Progress.running ) return;
        if ( change != PlayModeStateChange.ExitingEditMode ) return;

        Debug.Log( "再生キャンセル" );
        EditorApplication.isPlaying = false;
    }
}