function localrange(x1,y1,r)
rangeR ={};
for i = 1,120 do
y = -math.ceil(r*math.cos(math.rad(i*3)))
x = math.ceil(r*math.sin(math.rad(i*3)))
x = x + x1
y = y + y1
table.insert(rangeR,{x,y})
end
end
大概就是这个意思,带入一个坐标和半径,计算出来一个圆的上面的坐标.
移动的话就遍历这个数组从1-2-3-4一直移动下去就是了
问 触摸弧度滑动具体Lua如何实现