Lens Scripting API
    remove: any = ...

    The global TWEEN Group will be removed in a following major release. To migrate, create a new Group() instead of using TWEEN as a group.

    Old code:

    import * as TWEEN from '@tweenjs/tween.js'

    //...

    const tween = new TWEEN.Tween(obj)
    const tween2 = new TWEEN.Tween(obj2)

    //...

    requestAnimationFrame(function loop(time) {
    TWEEN.update(time)
    requestAnimationFrame(loop)
    })

    New code:

    import {Tween, Group} from '@tweenjs/tween.js'

    //...

    const tween = new Tween(obj)
    const tween2 = new TWEEN.Tween(obj2)

    //...

    const group = new Group()
    group.add(tween)
    group.add(tween2)

    //...

    requestAnimationFrame(function loop(time) {
    group.update(time)
    requestAnimationFrame(loop)
    })
    MMNEPVFCICPMFPCPTTAAATR