2020年2月2日

查看Unity脚本源代码

摘要: 在Unity脚本开发中,常常使用Debug.Log或print来打印调试信息,这俩有什么区别? 1 using System.Collections; 2 using System.Collections.Generic; 3 using UnityEngine; 4 5 public class 阅读全文

posted @ 2020-02-02 13:27 我来乔23 阅读(4070) 评论(0) 推荐(0)

自定义修改Unity脚本模板

摘要: 在Unity Editor中Create C# script后,会自动生成初始化脚本: 1 using System.Collections; 2 using System.Collections.Generic; 3 using UnityEngine; 4 5 public class Scri 阅读全文

posted @ 2020-02-02 12:47 我来乔23 阅读(396) 评论(0) 推荐(0)

导航