コード例 #1
0
ファイル: Adjust.cs プロジェクト: Ben0hongmoe/unity_sdk
 public static void removeSessionPartnerParameter(string key)
 {
     if (!Application.isEditor)
     {
     #if UNITY_IOS
         AdjustiOS.RemoveSessionPartnerParameter(key);
     #elif UNITY_ANDROID
         AdjustAndroid.RemoveSessionPartnerParameter(key);
     #elif (UNITY_WSA || UNITY_WP8)
         AdjustWindows.RemoveSessionPartnerParameter(key);
     #else
         Debug.Log(errorMsgPlatform);
     #endif
     }
 }