Esempio n. 1
0
    bool ReadResource1(string src)
    {
        var tmp   = hglParser.Parser(src);
        var files = hglHtmlWork.GetAllFilenames(tmp);

        foreach (var f in files)
        {
            m_resman.Register(f, m_winInfo.CreateFullPath(f));
        }
        return(m_resman.CheckHasNetFiles());
    }
Esempio n. 2
0
    IEnumerator UpdateCoroutine()
    {
        while (true)
        {
            yield return(null);

#if UNITY_EDITOR || UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX
            m_pos = (Vector2)Input.mousePosition;
#else
            m_pos = (Input.touchCount != 0) ? Input.touches[0].position : new Vector2(float.NaN, float.NaN);
#endif
            if (float.IsNaN(m_pos.x))
            {
                continue;
            }

            m_vpos = new Vector2((m_pos.x) / Screen.width, (m_pos.y) / Screen.height);

            Ray ray = m_camera.ViewportPointToRay(new Vector3(m_vpos.x, m_vpos.y, 0));

            RaycastHit hit;
            if (Physics.Raycast(ray, out hit))
            {
                //Debug.Log("Hit" + hit.transform.name);
                var bl = hit.transform.GetComponent <hglButtonLink>();

                if (Input.GetMouseButtonUp(0))
                {
                    string url;
                    if (bl.GetJumpUrl(out url))
                    {
                        bl.Touched();
                        yield return(new WaitForSeconds(0.5f));

                        Debug.Log("Hit! and go to " + url);

                        if (hglEtc.check_head(url, "javascript:"))
                        {
                            m_mainReader.ExecuteScript(url);
                        }
                        else
                        {
                            m_mainReader.Browse(m_mainWinInfo.CreateFullPath(url));
                        }
                    }
                }
                else
                {
                    bl.Hover();
                }
            }
        }
    }