谈quick addSearchPath

addSearchPath在quick中只有一个参数,即要添加的文件夹加入到搜索路径,以便于找到此资源
常见的添加方式为

CCFileUtils:sharedFileUtils():addSearchPath("res/")
CCFileUtils:sharedFileUtils():addSearchPath("scripts/")

此时向quick说明,我们已添加了资源res和scripts下面的资源。可以正常工作了

根据实际的代码反馈,它有以下几个特点
1 包名(即文件夹)非常关键,区别不同的lua源文件的关键就是包名

local a = require("app.states")
local b = require("scripts.states")

这是两个不同的对象,一个在app/文件夹下,一个在根目录scripts/下

2 要包括另一个文件夹的资源,需要一层一层的包含
若有个另个目录独在res目录同一层或是其他目录,需要add其绝对路径

local path = device.writablePath.."/other/"
--假设other中也有scripts与res目录 CCFileUtils:sharedFileUtils():addSearchPath(path) CCFileUtils:sharedFileUtils():addSearchPath(path.."res/") CCFileUtils:sharedFileUtils():addSearchPath(path.."scripts/")

3 若是资源有冲突的,使用先添加的
若res与other/res 下都有1.png
那么无论在哪里加添1.png 都使用 res下面的 而other/res下的1.png不会被加载

你可能感兴趣的:(Quick,searchpath)