闪电特效 根据不同的起点 终点 资源做倾斜 拉伸 ,主要是计算倾斜角度。
function ZyLight:show(params)
local params = params or {}
local startp = params.startp -- 起点
local endp = params.endp ...……
原文
寄存器
Instruction Notation
R(A)
Register A (specified in instruction field A)
R(B)
Register B (specified in instruction field B)
R(C)
Register C (specified in instruction field C)
PC
Program Cou ...……
local t1= {10,11}
function t1.Show()
print(amp;quot;t1 showamp;quot;)
end
function GetT() return t1 end
local t2 = GetT()
t2 = 5 --修改t2会同步修改t1
print(t1)
t1 = 55 --修改t1会同步修改t2
p ...……