Animation.skewY(Number ay)
基础库
3.34.0
开始支持
对 Y 轴坐标进行倾斜。
参数
Number ay
参数说明
参数范围 -180~180 ;X 轴坐标不变, Y 轴坐标延顺时针倾斜 ay
度。(不支持 90/-90 度的倾斜。传入 90/-90 时,不会报错,但是将得到与预期不符的效果。)
返回值
Animation
示例代码
const animation = bl.createAnimation();
animation.skewY(Math.random() * 90).step();