Completely redesigned the parallax scrolling with clouds; added Maggie's

welcome sound on new game.
This commit is contained in:
Henry 2026-02-12 23:10:13 +00:00
parent c5a25cb33a
commit fd607018a3
11 changed files with 227 additions and 53 deletions

View file

@ -11,8 +11,9 @@ func _on_goose_talk():
var tween = create_tween()
tween.tween_property(self, "position:x", position.x - 50, .5).set_ease(tween.EASE_OUT)
await tween.finished
$DapperGoose/Bubble.show()
await get_tree().create_timer(3).timeout
$DapperGoose/Bubble.hide()
tween = create_tween()
tween.tween_property(self, "position:x", position.x + 50, .5).set_ease(tween.EASE_IN)