コガネブログ

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

【Unity】Paste Component As New をスクリプトから呼び出す方法

概要

using UnityEditor;
using UnityEditorInternal;

public static class Example
{
    [MenuItem( "Tools/Hoge" )]
    private static void Hoge()
    {
        var gameObject = Selection.activeGameObject;
        ComponentUtility.PasteComponentAsNew( gameObject );
    }
}

ComponentUtility.PasteComponentAsNew を使用する