10 2022 档案
摘要:local _g = _G exports = {} setmetatable(exports,{ __newindex = function(_, key, value) rawset(_g, key, value) end, __index = function(_, key) return r
阅读全文
摘要:math.pi 为圆周率常量 = 3.14159265358979323846 | 函数 | 意义 | 调用| 结果 | | | | | | | abs |取绝对值 |math.abs(-15)| 15| | acos | 反余弦函数| math.acos(0.5)|1.04719755| |asi
阅读全文
摘要:function class(classname, super) assert(classname and classname ~= "","class name can not empyt") local v if GameDefince.UNITY_EDITOR then class_defin
阅读全文