feat: bubbles setup
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 7s
Create tag and build when new code gets to main / Export (push) Successful in 2m11s

This commit is contained in:
2025-08-01 11:29:35 +02:00
parent 18d1b0b22d
commit d34f0749bd
5 changed files with 87 additions and 4 deletions

View File

@ -1,6 +1,7 @@
extends Node2D
@onready var bubbles: HBoxContainer = $Bubbles
@onready var bubbles_back: TileMapLayer = $BubblesBack
@onready var bubbles_interior: TileMapLayer = $BubblesInterior
@ -17,10 +18,12 @@ func on_camera_became_active(camera: SuperCamera):
func on_dialogue_started():
bubbles.visible = true
bubbles_back.visible = true
bubbles_interior.visible = true
func on_dialogue_ended():
bubbles.visible = false
bubbles_back.visible = false
bubbles_interior.visible = false