animationA = new Animation
layer: doc.canteen
properties:
x: 400
y: 1600
opacity: 0.5
curve: "bezier-curve(0.25, 0.1, 0.25, 1)"
这里我尝试使用z值,它被放大了。为了缩小我认为我们应该使用 - 值,然后它也按比例放大但反过来。我想缩小它。请帮忙。
答案 0 :(得分:0)
要缩小图层,请使用“缩放”属性。
animationA = new Animation
layer: doc.canteen
properties:
scale: .5 #Scales down to 50%
curve: "bezier-curve(0.25, 0.1, 0.25, 1)"