Worker and secretary audio

This commit is contained in:
journaliciouz
2025-12-18 21:31:48 +01:00
parent c4c513733a
commit 8e4886f7e0
30 changed files with 972 additions and 36 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class ReceptionistAnimEventWrapper : MonoBehaviour
{
public ReceptionistCountingBehavior countingBehavior;
public void PlayLoveAudio(string lovesMe)
{
if (lovesMe == "true")
{
countingBehavior.PlayCountingAudio(true);
}
else
{
countingBehavior.PlayCountingAudio(false);
}
}
}