摘要:
--四舍五入 function rounding(value) local positive = 1 if value < 0 then positive = -1 end value = math.abs(value) local int, decimal = math.modf(value) d 阅读全文
摘要:
1:控制台 using ScreenFile.Script; using System; using System.Collections.Generic; namespace ScreenFile { class Program { public static FileUtil fileUtil; 阅读全文
摘要:
using UnityEngine; using System.Collections; using UnityEditor; using System.Collections.Generic; using System.IO; using System.Text; public class Atl 阅读全文
摘要:
using System; using System.Collections.Generic; namespace CustomUtils { /// <summary> /// 事件管理器 /// </summary> public class EventManager { private rea 阅读全文