コガネブログ

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

【Unity】プレハブモードかどうかをエディタ拡張で確認する方法

概要

using UnityEditor;
using UnityEditor.Experimental.SceneManagement;
using UnityEngine;

public static class Example
{
    [MenuItem( "Tools/Hoge" )]
    public static void Hoge()
    {
        var isPrefabMode = PrefabStageUtility.GetCurrentPrefabStage() != null;
        Debug.Log( isPrefabMode );
    }
}