Esempio n. 1
0
    public static void begin(string taskId, DCTaskType taskType)
    {
        if (taskId == null)
        {
            return;
        }
#if UNITY_EDITOR
#elif UNITY_ANDROID
        task.CallStatic("begin", taskId, (int)taskType);
        Debug.Log("begin");
#elif UNITY_IPHONE
        dcTaskBegin(taskId, (int)taskType);
#elif UNITY_WP8
        DataEyeWP8.DCTask.begin(taskId, (DataEyeWP8.DCTaskType)taskType);
#endif
    }
Esempio n. 2
0
 public static void begin(string taskId, DCTaskType taskType)
 {
     if(taskId == null)
     {
         return;
     }
     #if UNITY_EDITOR
     #elif UNITY_ANDROID
     task.CallStatic("begin", taskId, (int)taskType);
     Debug.Log("begin");
     #elif UNITY_IPHONE
     dcTaskBegin(taskId, (int)taskType);
     #elif UNITY_WP8
     DataEyeWP8.DCTask.begin(taskId, (DataEyeWP8.DCTaskType)taskType);
     #endif
 }