摘要:
let scale9Sprite = new ccui.Scale9Sprite(filePath);scale9Sprite.setCapInsets(cc.rect(x,y,w,h));而非 let scale9Sprite = new ccui.Scale9Sprite(filePath,cc 阅读全文
摘要:
sprite.setTexture(fileName); imageView.loadTexture(fileName); 阅读全文
摘要:
array.forEach(function(item,index){ }.bind(this)); 同 array.forEach((item,index) =>{ }); 阅读全文
摘要:
对从其他类获取的数据 要先进行数据安全的检测。 阅读全文
摘要:
找到对应协议在对应proto中的片段(片段的子也要提取),提出来 放到适合proto文件中(逻辑 || 功能近似协议聚集地) 转换成proto.js 替换 || 增加原有js内容 阅读全文
摘要:
parentNode.removeChildByTag(0); let childNode = new cc.Node(); parentNode.addChild(childNode); childNode.setTag(0);//用以删除 childNode.addChild(child1); 阅读全文
摘要:
把收到的数据做的有缩进 webstorm 的json文件 中 ctrl + alt + l(字母L) 阅读全文
摘要:
今天遇到了一个问题,就是有一个界面,在生成时之前请求数据,在界面中通过schedule 与unschedule不停查看本地是否收到此数据(通过发起request的Id),当收到之后刷新。 然后就引起了一个问题。界面弹出是有动画的,在动画从小到大的过程中收到数据,动画会卡顿,paint界面,然后动画继 阅读全文
摘要:
//arrayObject.splice(index,howmany,item1,.....,itemX) 语法 //测试代码let array;array = ['George','John','Thomas','James','Adrew','Martin'];cc.log('array = ' 阅读全文
摘要:
//array.find(function(currentValue, index, arr),thisValue) 方法说明let tempArray = [ {"key":100,"key2":"sdfsdf"},{"key":210,"key2":"dfgdg"},{"key":310,"ke 阅读全文