123456789101112131415161718192021222324252627282930313233343536373839 |
- var t = require;
- var e = module;
- var i = exports;
- var s =
- (this && this.__decorate) ||
- function (t, e, i, s) {
- var o,
- a = arguments.length,
- n = a < 3 ? e : null === s ? (s = Object.getOwnPropertyDescriptor(e, i)) : s;
- if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) n = Reflect.decorate(t, e, i, s);
- else
- for (var r = t.length - 1; 0 <= r; r--)
- (o = t[r]) && (n = (a < 3 ? o(n) : 3 < a ? o(e, i, n) : o(e, i)) || n);
- return 3 < a && n && Object.defineProperty(e, i, n), n;
- };
- Object.defineProperty(i, "__esModule", {value: !0});
- var {ccclass: e} = cc._decorator,
- e = s(
- [e],
- (e = class extends cc.Component {
- constructor() {
- super(...arguments), (this.food = null), (this.cntLab = null);
- }
- onLoad() {
- (this.food = this.node.getChildByName("Food").getComponent(cc.Sprite)),
- (this.cntLab = this.node.getChildByName("CntLab").getComponent(cc.Label));
- }
- setData(t) {
- (this.cntLab.string = t.cnt + ""), (this.food.spriteFrame = t.machine.foodImg.spriteFrame);
- }
- setCnt(t) {
- this.cntLab.string = t + "";
- }
- destroySelf() {
- this.node.pool.push(this.node);
- }
- })
- );
- i.default = e;
|