cocos 寻路 lua实现
local RoadPoint = {}
function RoadPoint:CreateNode(p)
-- body
local t = {}
t.g = -1;
t.h = -1;
t.f = 0;
t.point = p;
t.parent = nil;
return t;
end
-- 判断p是否在open表中
function R ...……
更多好的文章就在 blog.haoitsoft.com,请大家多多支持!
local getTime = os.date(“%c”);
其中的%c可以是以下的一种:(注意大小写)
%a
abbreviated weekday name (e.g., Wed)
%A
full weekday name (e.g., ...……