void Update()
 {
     if (isUpdate)
     {
         isUpdate = false;
         calendarPanel.UpdateSchedules(schedules);
         schedules.Clear();
     }
 }
Esempio n. 2
0
 void Update()
 {
     if (isUpdate)
     {
         isUpdate = false;
         Debug.Log("UpdateSchedule");
         calendarPanel.UpdateSchedules(schedules);
         schedules.Clear();
         NativeToolkit.ScheduleLocalNotification(noticeStr, noticeContent, 1, noticeMin, "sound_notification", true, "ic_notification", "ic_notification_large");
     }
 }