// 发送客户端自定义事件 MBI统计 public static void SendUserAction(string strEvent) { #if UNITY_WP8 && !UNITY_EDITOR WPSDKHelperScript.Instance().WPSendUserAction(strEvent); #elif UNITY_ANDROID && !UNITY_EDITOR AndroidHelper.platformHelper("sendUserAction", strEvent); #elif UNITY_IPHONE && !UNITY_EDITOR IOSHelper.SDK_SendUserAction(strEvent); #else #endif }