码迷,mamicode.com
首页 > 其他好文 > 详细

划线标注

时间:2017-05-25 11:41:59      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:iat   code   transform   png   npoi   find   tor   instant   div   

 

技术分享

 

手动摆放线段和标识太累,写个脚本做。如有问题,请加公众号 :哎呦还不错喔                    

 void Start()
    {
        Vector3 Tpos = transform.position;
        int w , h ;

        w = Camera.main.WorldToScreenPoint(Tpos).x < Screen.width / 2 ? -1 : 1;
        h = Camera.main.WorldToScreenPoint(Tpos).y < Screen.height / 2 ? -1 : 1;


        GameObject xian = new GameObject();
        LineRenderer Line = xian.AddComponent<LineRenderer>();
        Line.SetWidth(0.1f, 0.1f);
        Line.SetVertexCount(3);
        Line.SetPosition(0, Tpos);
        Line.SetPosition(1, Tpos + new Vector3(2*w, 2*h, 0));
        Line.SetPosition(2, Tpos + new Vector3(3*w, 2*h, 0));

        Transform tr = (Instantiate(GameObject.Find("Button")) as GameObject).transform;
        tr.parent = GameObject.Find("Canvas").transform;
        tr.position = Tpos + new Vector3((3+0.5f)*w, 2*h, 0);
        tr.GetComponentInChildren<Text>().text=transform.name;
    }
  

 

划线标注

标签:iat   code   transform   png   npoi   find   tor   instant   div   

原文地址:http://www.cnblogs.com/Feiyuzhu/p/6902484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!