Extensive work on VFX for the guild, assets for the world, and portrait variance. Work on quests. Extra work on User Flow completion and file saving.
This commit is contained in:
12
scripts/quest_notice_banner.gd
Normal file
12
scripts/quest_notice_banner.gd
Normal file
@@ -0,0 +1,12 @@
|
||||
extends Sprite2D
|
||||
|
||||
func _ready():
|
||||
var move_tween = create_tween()
|
||||
move_tween.tween_property(self, "position:y", -40, 1.25)
|
||||
var fade_tween = create_tween()
|
||||
modulate.a = 0
|
||||
fade_tween.tween_property(self, "modulate:a", 1, .15)
|
||||
fade_tween.tween_interval(0.85)
|
||||
fade_tween.tween_property(self, "modulate:a", 0, .25)
|
||||
fade_tween.tween_callback(queue_free)
|
||||
|
||||
Reference in New Issue
Block a user