a095d804-e25b-4d2a-956a-45db623c9dfc.js 2.45 KB
"use strict";
cc._RF.push(module, 'a095dgE4ltNKpVqRdtiPJ38', 'FadeChangeAction');
// script/cooperation/script/FadeChangeAction.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 FadeChangeAction = /** @class */ (() => {
    let FadeChangeAction = class FadeChangeAction extends cc.Component {
        constructor() {
            super(...arguments);
            this.loopTimes = -1;
            this.speed = 1;
            this.opacityMax = 255;
            this.opacityMin = 0;
            this.defaultOpacity = 255;
            this._baseTime = 1;
            this._loopCount = 0;
        }
        onEnable() {
            let actTime = this._baseTime / this.speed;
            if ((-1) === this.loopTimes) {
                cc.tween(this.node)
                    .to(actTime, { opacity: this.opacityMax })
                    .to(actTime, { opacity: this.opacityMin })
                    .union()
                    .repeatForever()
                    .start();
            }
        }
        onDisable() {
            this.resetToDefault();
        }
        resetToDefault() {
            this._loopCount = 0;
            this.node.stopAllActions();
            this.node.opacity = this.defaultOpacity;
        }
    };
    __decorate([
        property
    ], FadeChangeAction.prototype, "loopTimes", void 0);
    __decorate([
        property
    ], FadeChangeAction.prototype, "speed", void 0);
    __decorate([
        property
    ], FadeChangeAction.prototype, "opacityMax", void 0);
    __decorate([
        property
    ], FadeChangeAction.prototype, "opacityMin", void 0);
    __decorate([
        property
    ], FadeChangeAction.prototype, "defaultOpacity", void 0);
    FadeChangeAction = __decorate([
        ccclass
    ], FadeChangeAction);
    return FadeChangeAction;
})();
exports.default = FadeChangeAction;

cc._RF.pop();