45 lines
1.4 KiB
JavaScript
45 lines
1.4 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: {
|
|
itemid: 0,
|
|
lb_count: {
|
|
default: null,
|
|
type: cc.Label,
|
|
},
|
|
},
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
// onLoad () {},
|
|
|
|
start() {
|
|
|
|
},
|
|
|
|
update(dt) {
|
|
if (!cc.gameMgr.watchPlayer||!cc.gameMgr.watchPlayer.pctrl) {
|
|
this.node.opacity = 0
|
|
return
|
|
}
|
|
if (cc.gameMgr.watchPlayer.pctrl.bagmap[this.itemid] > 0) {
|
|
this.node.opacity = 255
|
|
this.lb_count.string = cc.gameMgr.watchPlayer.pctrl.bagmap[this.itemid]
|
|
} else {
|
|
this.node.opacity = 0
|
|
}
|
|
},
|
|
onclick(){
|
|
cc.gameMgr.watchPlayer.pctrl.use_item_id = this.itemid
|
|
},
|
|
}); |