Files
CocosCreatorTutorial/CreatorTemplate/new-script.js
2018-12-24 16:19:07 +08:00

39 lines
341 B
JavaScript

cc.Class({
extends: cc.Component,
properties: {
},
onLoad() {
this.registerEvent();
},
registerEvent() {
},
init(data) {
},
update(dt) {
},
onEnable() {
this.registerEvent();
},
onDisable() {
this.offEvent();
},
offEvent() {
cc.emitter.offThis(this);
},
onDestroy() {
}
});