trying it using but object is moving diagonal (down-right)
var tween = getnode("Tween")
func _physicsprocess(delta):
myPos = self.position
destination = myPos + Vector2(0,0.1)
tween.interpolateproperty(self,"linearvelocity",myPos,destination,1,Tween.TRANSLINEAR,Tween.EASEINOUT)
tween.start()
pass