pubgv3/assets/scripts/UI/task/wantedHero.js
guoqing.zhu bc54ca812a update
2022-06-04 20:21:14 +08:00

27 lines
340 B
JavaScript

cc.Class({
extends: cc.Component,
properties: {
nd_cover: {
default: null,
type: cc.Node,
},
},
onLoad() {
this.hasChoose = false;
},
getHasChoose() {
return this.hasChoose;
},
showCover() {
// this.nd_cover.active = true;
},
hideCover() {
// this.nd_cover.active = false;
},
});