Unity添加脚本自动注释 模板 作者信息等

发布于 2023-04-14  184 次阅读


  • 步骤一:在unity安装路径下找到81-C# Script-NewBehaviourScript.cs文件,打开脚本文件,将以下覆盖原文件内容。我的路径:D:\Unity20213\2021.3.11f1c2\Editor\Data\Resources\ScriptTemplates

//作者名和邮箱名可随意更改

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

    #ROOTNAMESPACEBEGIN#
/****************************************************
    文件:#SCRIPTNAME#.cs
    作者:S
    邮箱: 784838898@qq.com
    日期:#CreateTime#
    功能:Nothing
*****************************************************/
public class #SCRIPTNAME# : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        #NOTRIM#
    }

    // Update is called once per frame
    void Update()
    {
        #NOTRIM#
    }
}
#ROOTNAMESPACEEND#



  • 步骤二:在Unity项目中创建一个Editor文件夹,在此文件夹下创建一个脚本为ScriptsInfoRecoder.cs,脚本内容如下:
/************************************************************
    文件: ScriptsInfoRecoder.cs
	作者: S
    邮箱: 784838898@qq.com
    日期: 2023/04/13 12:01
	功能: 记录脚本信息
*************************************************************/

using System;
using System.IO;

public class ScriptsInfoRecoder : UnityEditor.AssetModificationProcessor
{
    private static void OnWillCreateAsset(string path)
    {
        path = path.Replace(".meta", "");
        if (path.EndsWith(".cs"))
        {
            string str = File.ReadAllText(path);
            str = str.Replace("Plane", Environment.UserName).Replace(
                              "#CreateTime#", string.Concat(DateTime.Now.Year, "/", DateTime.Now.Month, "/",
                                DateTime.Now.Day, " ", DateTime.Now.Hour, ":", DateTime.Now.Minute, ":", DateTime.Now.Second));
            File.WriteAllText(path, str);
        }
    }
}