37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
// Learn cc.Class:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/class.html
|
|
// - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/class.html
|
|
// Learn Attribute:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
// - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
// - [English] https://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
cc.Class({
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
itemtp: -1,
|
|
itemid: -1,
|
|
},
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
onLoad() {
|
|
cc.Notifier.on('uigetitem', this, this.uigetitem.bind(this));
|
|
},
|
|
onDestroy() {
|
|
cc.Notifier.off('uigetitem', this);
|
|
},
|
|
uigetitem(res) {
|
|
if (this.itemid == res.id || this.itemtp == res.tp) {
|
|
this.node.getComponent(cc.Animation).play()
|
|
}
|
|
}
|
|
// start () {
|
|
// this.node.getComponent(cc.ParticleSystem).cankao = cc.gameMgr.ndbullet
|
|
// },
|
|
|
|
// update (dt) {},
|
|
}); |