You've already forked taptap2024_GJ_chidouren
init
This commit is contained in:
54
Assets/Scripts/System/AnalysisEventMgr.cs
Normal file
54
Assets/Scripts/System/AnalysisEventMgr.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System.Collections.Generic;
|
||||
using Framework.Utils.SingletonTemplate;
|
||||
using UnityEngine;
|
||||
|
||||
public partial class AnalysisEventMgr : MgrBase<AnalysisEventMgr>
|
||||
{
|
||||
protected override void OnCreateMge()
|
||||
{
|
||||
Debug.Log("AnalysisEventMgr 初始化完成");
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void EventLog(string eventName)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void EventLog(string eventName , string name , object value)
|
||||
{
|
||||
EventLog(eventName , new KeyValuePair<string, object>(name , value));
|
||||
}
|
||||
|
||||
public void EventLog(string eventName, string label)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void EventLog(string eventName , params KeyValuePair<string , object>[] eventData)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void BeginPage(string page)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void ClosePage(string page)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user