Skip to content
On this page

Animation.scaleZ

缩放 Z 轴。

参数

number scale

Z 轴的缩放倍数

返回值

Animation

Example

ts
const anim = ek.createAnimation()
const animData = anim
  .scaleZ(2.0)
  .step()
  .export()