Animation.translate(Number tx, Number ty)
基础库
3.34.0
开始支持
平移变换。
参数
Number tx, Number ty
参数说明
一个参数时,表示在 X 轴偏移 tx
(单位:px);两个参数时,表示在 X 轴偏移 tx
,在 Y 轴偏移 ty
(单位:px)。
返回值
Animation
示例代码
const animation = bl.createAnimation();
animation.translate(Math.random() * 100 - 50, Math.random() * 100 - 50).step();