コード例 #1
0
ファイル: NotificationItem.cs プロジェクト: Zal0/Familiar7
        public void Init(Objects.Notification notification)
        {
            text.text = notification.Text;

            if (notification.Image != null)
            {
                image.sprite  = notification.Image;
                image.enabled = true;
            }
            else
            {
                image.enabled = false;
            }
        }
コード例 #2
0
 public void QueueNotification(Objects.Notification notification)
 {
     notificationsQueue.Enqueue(notification);
 }