UNPKG

laya-coreui-es

Version:

laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改

10 lines (9 loc) 341 B
import { EffectBase } from "././EffectBase"; import { Tween } from "../utils/Tween"; import { Ease } from "../utils/Ease"; export class FadeOut extends EffectBase { _doTween() { this.target.alpha = 1; return Tween.to(this.target, { alpha: 0 }, this.duration, Ease[this.ease], this._comlete, this.delay); } }