From 834d0e2a21ae699e0a7e26c8590cf42a6e138031 Mon Sep 17 00:00:00 2001 From: godotg Date: Sat, 9 Jul 2022 17:28:47 +0800 Subject: [PATCH] doc --- script/demo10_animation/tween_animation.gd | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/script/demo10_animation/tween_animation.gd b/script/demo10_animation/tween_animation.gd index c9144ca..c858a81 100644 --- a/script/demo10_animation/tween_animation.gd +++ b/script/demo10_animation/tween_animation.gd @@ -9,8 +9,4 @@ func _ready(): # 会在起始点和终点不断的插值计算 tween.follow_property(self, "position", get_position(), targetPosition, "position", 2.0, Tween.TRANS_LINEAR, Tween.EASE_IN_OUT) tween.start() - - -# Called every frame. 'delta' is the elapsed time since the previous frame. -#func _process(delta): -# pass + pass