This commit is contained in:
journaliciouz
2025-11-19 23:46:12 +01:00
parent 38466381a5
commit b2c61125ef
11 changed files with 137 additions and 3 deletions

View File

@@ -362,12 +362,16 @@ namespace UI.CardSystem
// Entering album proper and no cards spawned yet - spawn them with animation
Logging.Debug("[AlbumViewPage] Entering album proper - spawning pending cards with animation");
SpawnPendingCornerCards();
// Play flip audio
AudioManager.Instance.LoadAndPlayUIAudio("random_paper_pickup", false);
}
else if (!isInAlbum && CornerCards.PendingCards.Count > 0)
{
// Returning to menu page - cleanup cards
Logging.Debug("[AlbumViewPage] Returning to menu page - cleaning up pending cards");
CleanupPendingCornerCards();
// Play flip audio
AudioManager.Instance.LoadAndPlayUIAudio("random_paper_putdown", false);
}
else
{