[3.6.4 HotFix] 修正 ccs 克隆 图片节点失败
存在问题的版本
3.6.4 Release
问题描述
3.6.4 在修正 widget clone not modify "sbuChildren" property
这个bug的时候,加入了下面的条件判断。
if child.name then
self.subChildren[child.name] = cloneChild
end
由于没有测试到图片节点没有 sbuChildren 的情况,所以clone的时候存在异常终止。
解决办法
修改引擎中的quick/framework/cocos2dx/NodeEx.lua
文件的的504行为如下代码:
if child.name and self.subChildren then
注意同步修改项目下的YourProject/src/framework/cocos2dx/NodeEx.lua
文件。