void Awake()
        {
            if (m_Unknown != null)
            {
                m_Unknown.SetActive(false);
            }

            if (m_DownloadButton != null)
            {
                m_DownloadButton.gameObject.SetActive(false);
            }

            if (m_AvailableOffline != null)
            {
                m_AvailableOffline.SetActive(false);
            }

            if (m_UpdateAvailable != null)
            {
                m_UpdateAvailable.gameObject.SetActive(false);
            }

            if (m_QueuedForDownload != null)
            {
                m_QueuedForDownload.SetActive(false);
            }

            if (m_DownloadIndicator != null)
            {
                m_DownloadIndicator.Initialize();
                m_DownloadIndicator.gameObject.SetActive(false);
            }

            if (m_DownloadError != null)
            {
                m_DownloadError.SetActive(false);
            }

            if (m_QueuedForDelete != null)
            {
                m_QueuedForDelete.SetActive(false);
            }

            if (m_DeleteIndicator != null)
            {
                m_DeleteIndicator.Initialize();
                m_DeleteIndicator.gameObject.SetActive(false);
            }

            if (m_DeleteError != null)
            {
                m_DeleteError.SetActive(false);
            }

            if (m_ConnectionError != null)
            {
                m_ConnectionError.SetActive(false);
            }
        }