97686183-a299-44c8-817f-c37c42991faa.js 2.01 KB
"use strict";
cc._RF.push(module, '97686GDoplEyIF/w3xCmR+q', 'BreathAction');
// script/game/ui/BreathAction.ts

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
    var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
    if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
    else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
    return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
const { ccclass, property } = cc._decorator;
let BreathAction = /** @class */ (() => {
    let BreathAction = class BreathAction extends cc.Component {
        constructor() {
            super(...arguments);
            this.speed = 1;
            this.opacityMax = 255;
            this.opacityMin = 0;
            this._baseTime = 1;
        }
        onLoad() { }
        start() {
        }
        onEnable() {
            let actTime = this._baseTime / this.speed;
            let fadeInAct = cc.fadeTo(actTime, this.opacityMax);
            let fadeOutAct = cc.fadeTo(actTime, this.opacityMin);
            this.node.stopAllActions();
            this.node.runAction(cc.repeatForever(cc.sequence(fadeInAct, fadeOutAct)));
        }
        onDisable() {
            this.node.stopAllActions();
            this.node.opacity = this.opacityMax;
        }
        update(dt) { }
    };
    __decorate([
        property
    ], BreathAction.prototype, "speed", void 0);
    __decorate([
        property
    ], BreathAction.prototype, "opacityMax", void 0);
    __decorate([
        property
    ], BreathAction.prototype, "opacityMin", void 0);
    BreathAction = __decorate([
        ccclass
    ], BreathAction);
    return BreathAction;
})();
exports.default = BreathAction;

cc._RF.pop();