Exemplo n.º 1
0
    public static void LogEvent(string eventName, Dictionary <string, string> parameters)
    {
#if UNITY_EDITOR
#elif UNITY_ANDROID
        FlurryAndroid.LogEvent(eventName, parameters);
#elif UNITY_IOS
        FlurryIOS.LogEvent(eventName, parameters);
#endif
    }
Exemplo n.º 2
0
    public static void LogEvent(string eventName)
    {
#if UNITY_EDITOR
#elif UNITY_ANDROID
        FlurryAndroid.LogEvent(eventName);
#elif UNITY_IOS
        FlurryIOS.LogEvent(eventName);
#endif
    }
Exemplo n.º 3
0
 public EventRecordStatus BeginLogEvent(string eventName)
 {
     return(FlurryAndroid.LogEvent(eventName, true));
 }
Exemplo n.º 4
0
 public EventRecordStatus BeginLogEvent(string eventName, Dictionary <string, string> parameters)
 {
     return(FlurryAndroid.LogEvent(eventName, parameters, true));
 }
Exemplo n.º 5
0
 public EventRecordStatus LogEvent(string eventName, bool timed)
 {
     return(FlurryAndroid.LogEvent(eventName, timed));
 }