19 lines
400 B
C#
19 lines
400 B
C#
using UnityEngine;
|
|
|
|
public class ReceptionistAnimEventWrapper : MonoBehaviour
|
|
{
|
|
public ReceptionistCountingBehavior countingBehavior;
|
|
|
|
public void PlayLoveAudio(string lovesMe)
|
|
{
|
|
if (lovesMe == "true")
|
|
{
|
|
countingBehavior.PlayCountingAudio(true);
|
|
}
|
|
else
|
|
{
|
|
countingBehavior.PlayCountingAudio(false);
|
|
}
|
|
}
|
|
}
|