效果如下:
建议在保存时指定编码为UTF-8:
using (StreamWriter sw new StreamWriter(filePath, false, Encoding.UTF8)) { // 写入内容 }
最终
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD…
异步加载
Resources和AB包的同步加载与异步加载对比代码:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;public class AsyncLoad : MonoBehaviour
{// Start is called before the first frame updatev…