I am trying to animate an array of meshes in Three.js, but the properties are not being recognized.
tl.staggerFrom(array, 2, {"position.y":-100})
The position.y doesn't change. When I use console.log(array[0].position.y), it gives me the initial value of position.y.
How can I successfully use stagger animation with Three.js meshes?