cc.Class({
extends: cc.Component,
properties: {
bj: {
default: null,
type: cc.Node
}
},
// LIFE-CYCLE CALLBACKS:
onLoad () {
cc.log(this.bj.node.position.x);
},
一直提示 Uncaught TypeError: Cannot read property ‘position’ of undefined
为什么呢 头疼一晚上了。