以下の内容はhttps://mochimoffu.hateblo.jp/entry/2020/01/30/003000より取得しました。


UnityEditorの話~GameViewのスクリーンショットを撮影する方法~

qiita.com

この人の方法を参考にした。

using UnityEditor;
using UnityEngine;

public class CaptureScreenshotFromEditor : Editor
{
    [MenuItem("ShortCutCommand/CaptureScreenshot")]
    private static void CaptureScreenshot()
    {
        // 階層はAssetsフォルダが存在する階層に出力されるので、
        // パス指定で書き出し場所も変更可能
        string fileName = "screenshot.png";

#if UNITY_2017_1_OR_NEWER
        ScreenCapture.CaptureScreenshot(fileName);
#else
        Application.CaptureScreenshot(fileName);
#endif
    }



以上の内容はhttps://mochimoffu.hateblo.jp/entry/2020/01/30/003000より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14