unity自定义script模板
Posted dongzee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity自定义script模板相关的知识,希望对你有一定的参考价值。
以mac为例,在/Applications/Unity/Unity.app/Contents/Resources/ScriptTemplates/
新建1个模板文件:91-C# YourNameSpaceScript-NewBehaviourScript.cs.txt
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace YourNameSpace { public class #SCRIPTNAME# : MonoBehaviour { // Use this for initialization private void Awake() { #NOTRIM# } // Use this for initialization private void Start () { #NOTRIM# } // Use this for termination private void OnDestroy() { #NOTRIM# } // Update is called once per frame //private void Update () { //} } }
以上是关于unity自定义script模板的主要内容,如果未能解决你的问题,请参考以下文章