Animation.scale(Number sx, Number sy)
基础库
3.34.0
开始支持
缩放。
参数
Number sx, Number sy
参数说明
一个参数时,表示在 X 轴、Y 轴同时缩放 sx 倍数;两个参数时表示在 X 轴缩放 sx
倍数,在 Y 轴缩放 sy
倍数。
返回值
Animation
示例代码
const animation = bl.createAnimation();
animation.scale(Math.random() * 2, Math.random() * 3).step();