NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/GameWrapper/AnimationReceiver.cs

12 lines
237 B
C#
Raw Normal View History

2024-04-09 15:04:52 +08:00
using Framework;
2025-10-24 15:37:55 +08:00
using Obfuz;
2024-04-09 15:04:52 +08:00
using UnityEngine;
2025-10-24 15:37:55 +08:00
[ObfuzIgnore]
2024-04-09 15:04:52 +08:00
public class AnimationReceiver : MonoBehaviour
{
public void OnAnimationEnd()
{
EventManager.Instance.Send(EventManager.EventName.TransitionShowEnd);
}
}