TypeError: Cannot read property 'load' of undefined at cc.resources
TypeError: Cannot read property 'load' of undefined at cc.resources
当我尝试使用 cc.resources.load(arg1, arg2)
时,出现此错误:
Uncaught (in promise) TypeError: Cannot read property 'load' of undefined
据我所知,它是一个内置的 Cocos Creator class 并且 documentation 本身说要使用它。当我尝试调用 cc.log(cc.resources)
时,它在控制台中显示 undefined
。我的项目中存在一个名为“resources”的文件夹,它不是空的。
cc.resources
在 Cocos Creator 2.3.3 中不可用,仅在 2.4 中可用。
解决方法是使用函数cc.loader.loadRes
。
当我尝试使用 cc.resources.load(arg1, arg2)
时,出现此错误:
Uncaught (in promise) TypeError: Cannot read property 'load' of undefined
据我所知,它是一个内置的 Cocos Creator class 并且 documentation 本身说要使用它。当我尝试调用 cc.log(cc.resources)
时,它在控制台中显示 undefined
。我的项目中存在一个名为“resources”的文件夹,它不是空的。
cc.resources
在 Cocos Creator 2.3.3 中不可用,仅在 2.4 中可用。
解决方法是使用函数cc.loader.loadRes
。