cocos creator中使用Easing

主要用作动画,示例:

 cc.tween(this.stretch).to(0.1,{}).call(()=>{this.arrow.scale = scale}).to(0.5, { x: x },{easing:"sineOut"}).call(() => {this.inOrOut = !this.inOrOut;}).start();

官方文档具体效果参考地址:http://docs.cocos.com/creator/api/zh/classes/Easing.html#elasticout
替换代码实例中的"sineOut"即可

本文链接:https://my.lmcjl.com/post/12615.html

展开阅读全文

4 评论

留下您的评论.