Hello, I try to animate an Animated.ValueXY() value like this ``` Animated.timing( this.state.pan.y, { toValue: 100, duration: 250 } ) ``` or ``` Animated.timing( this.state.pan, { toValue: { y: 100 }, duration: 250 } ) ``` But it doesn't work. What did I miss ?