cc.Class({
extends: cc.Component,
statics: {
hello: function () {
console.log("hello world");
},
},
start() {
//这么写直接闪红屏,报错:hello()是null,正确的该怎么写
helloÏ();
},
});
cc.Class({
extends: cc.Component,
statics: {
hello: function () {
console.log("hello world");
},
},
start() {
//这么写直接闪红屏,报错:hello()是null,正确的该怎么写
helloÏ();
},
});