Example #1
0
 private void Start()
 {
             #if UNITY_ANDROID
     Kiip.saveMoment(MomentName);
     Kiip.showPoptart();
             #endif
 }
Example #2
0
 void onSaveMomentFinishedEvent(bool flag)
 {
     if (flag)
     {
         Kiip.showPoptart();
     }
     Debug.Log("onSaveMomentFinishedEvent ---- " + flag);
 }
 void onSaveMomentFinishedEvent(bool flag)
 {
     if (flag)
     {
         if (notificationType == 0)
         {
             Kiip.showPoptart(); // show kiip default notification
         }
         else
         {
             GameObject.Find("ui").SendMessage("ShowNotification"); //show custom notificatino
         }
     }
     Debug.Log("onSaveMomentFinishedEvent ---- " + flag);
 }
 public void OnNotificationClick()
 {
     HideNotificaition();
     Kiip.showPoptart();
 }