摘要:
直接上代码,注意 脚本需要放在Editor文件夹下 可按组合键,进行截图 ctrl + shift + y using System.IO; using System.Threading.Tasks; using UnityEditor; using UnityEditorInternal; usi 阅读全文
摘要:
一个类即可 using System.Collections; using System.Collections.Generic; using UnityEngine; public class ImageLine : MonoBehaviour { //线条宽度 public float line 阅读全文
摘要:
异步任务队列,十分好用 using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine; /// <summary> /// 异步任务队列 /// 阅读全文
摘要:
直接来,1个脚本 using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEditor; using Debug = UnityEngine.Debug; pub 阅读全文
摘要:
实例代码:获取 [] 里面的内容 Lua版本 print(' ') for s in string.gmatch('pp[1g1]ppp[1jj2]pp[1413]ppp', '%[(%w+)%]') do print(s) end print(' ') C#版本 string str=@"[11] 阅读全文