mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-23 22:13:14 +00:00
Please read here for more info: https://docs.godotengine.org/en/latest/getting_started/scripting/gdscript/gdscript_styleguide.html This commit does not add/change any new/existing features.
12 lines
420 B
GDScript
12 lines
420 B
GDScript
extends Label
|
|
|
|
|
|
func _ready() -> void:
|
|
var tween := $Tween
|
|
tween.interpolate_property(self, "rect_position", rect_position, Vector2(rect_position.x, rect_position.y - 100), 1, Tween.TRANS_LINEAR, Tween.EASE_OUT)
|
|
tween.interpolate_property(self, "modulate", modulate, Color(modulate.r, modulate.g, modulate.b, 0), 1, Tween.TRANS_LINEAR, Tween.EASE_OUT)
|
|
tween.start()
|
|
|
|
|
|
func _on_Timer_timeout() -> void:
|
|
queue_free()
|