cc.tween()中缓动easing的参数到底是什么,一致报 warn

Title 无效;请描述得更详尽些是什么鬼
Title 无效;请描述得更详尽些是什么鬼
Title 无效;请描述得更详尽些是什么鬼

这里面的easing到底有哪些呢,一致报 warn
Simulator: JS: [WARN]: Can not animate easing property, because it do not have [lerp, (add|mul), clone] function.
api 里面的参数填进去也不对

    let t = cc.tween;
    t(this.node)
        .to(0.2, {scale: 0.8, easing: "backOut"})
        .delay(0.3)
        .to(0.1, { scale: 1 })
        .parallel(
            t().by(1, { y: 200 }),
            t().to(0.8, { opacity: 80 })
        )
        .removeSelf()
        .start();

我也想知道·····

是我的问题
应该这样
let t = cc.tween;
t(this.node)
.to(0.2, { scale: 0.8 }, { easing: “backOut”})
.delay(0.3)
.to(0.1, { scale: 1 })
.parallel(
t().by(1, { y: 200 }),
t().to(0.8, { opacity: 80 })
)
.removeSelf()
.start();

有点急躁了。。。没看清楚这{}分开使用

不是这个参数么

官方文档的范例给的那么清楚,,,还要问一波?