16 lines
446 B
GDScript
16 lines
446 B
GDScript
|
extends Sprite
|
||
|
|
||
|
|
||
|
onready var tween = $Tween
|
||
|
onready var targetPosition = get_node("/root/Node2D/TargetPosition")
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
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
|