Files
JJBB/Assets/Project/Script/GUI/Base/UiCameraEventSender.cs

9 lines
222 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
using Games.Events;
using UnityEngine;
public class UiCameraEventSender : MonoBehaviour
{
private void OnPostRender()
{
EventDispatcher.Instance.Dispatch(Games.Events.EventId.PostUiCameraRender);
}
}