TS 同时 缩放并且变透明动作

const {ccclass, property} = cc._decorator;

 

@ccclass

export default class ScaleOpcaity extends cc.Component {

 

    // 同时 缩放并且变透明

    @property({type: cc.Float, displayName:"一个阶段多少秒"})

    time :  number = 0.4;

 

    @property({type: cc.Float, displayName:"缩放多少"})

    scaleMin : number  = 0.5;

 

    @property({type: cc.Integer, displayName:"透明度最大值"})

    opacityMax : number  = 255;

 

    @property({type: cc.Integer, displayName:"透明度最小值"})

    opacityMin : number  = 150;

 

    onLoad () {

        let scaleX = this.node.scaleX;

        let scaleY = this.node.scaleY;

 

        cc.tween(this.node)

        .repeatForever(

            cc.tween(this.node)

                .parallel(

                    cc.tween(this.node)

                    .to(this.time, {opacity : this.opacityMin})

                    .start(),

                    cc.tween(this.node)

                    .to(this.time, {scaleX : scaleX* this.scaleMin, scaleY : scaleY * this.scaleMin})

                    .start()

                )

                .parallel(

                    cc.tween(this.node)

                    .to(this.time, {opacity : this.opacityMax})

                    .start(),

                    cc.tween(this.node)

                    .to(this.time, {scaleX : scaleX, scaleY : scaleY})

                    .start()

                )

                .start()

            .start()

        )

        .start()

    }

 

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值