cc.Class({
extends: cc.Component,
properties: {
//child1:cc.Node,
//child2:cc.Node
child1:cc.Node,
},
onLoad:function(){
//this.child1=this.node.getChildByName("child1");
},
update:function(){
this.child1=this.node.getChildByName("child1");
child1.y+=20;
}
});
child1 一直未定义 不管定义在properties还是onload里面
