Tween animation is not working with TextureProgress

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By bashan

I am trying to animate the progress of TextureProgress using Tween. I am triggering the Tween using a signal:

$Tween.interpolate_property($TextureProgress, "value", start, end, 1, Tween.TRANS_QUAD, Tween.EASE_OUT)
$Tween.start()

The progress is not animated and after 1 second I only see the final state which is the new progress without the animation effect.

Any reason why animation doesn’t actually work?