Lua 资源搜索

local dir = cc.FileUtils:getInstance():getWritablePath()

cc.FileUtils:getInstance():addSearchPath(dir,true)

cc.FileUtils:getInstance():addSearchPath(dir.."/res/",true)

package.path = package.path .. ";src/"

cc.FileUtils:getInstance():setPopupNotify(false)

cc.FileUtils:getInstance():addSearchPath("res/")


-- Lua 调试输出   自定义 cclog 函数

local IS_DEBUG = true  -- 是debug模式,则输出信息

cclog = function(...)

          if not IS_DEBUG then

                       return

           end

            local log_var = string.format(...)

            print(log_var)

end

你可能感兴趣的:(Lua 资源搜索)