摘要:
效果 原理:就是将原有区域分割成围绕中心0的多个三角形 using UnityEngine; using UnityEngine.Sprites; using UnityEngine.UI; [RequireComponent(typeof(Image))] public class Polygon 阅读全文
摘要:
常用操作 字符文件本质上还是用二进制方式写出,只是他多了一步查找字符的二进制值的过程。比如:9用二进制写出就是0b1001,utf-8的'9‘写出就是要先在utf-8码表中找'9'对应的二进制0b111001,然后再写出。 写 if not os.path.exists("New Folder"): 阅读全文