当前位置:网站首页>NGUI,聊天滚动框,UI TextList

NGUI,聊天滚动框,UI TextList

2022-06-11 10:20:00 ying1228475251

    UITextList list;
    void Start()
    {
        list = transform.GetChild(3).GetComponent<UITextList>();
    }
    int i = 1;
    void Update()
    {
        if (Input.GetMouseButtonDown(0))
        {
            list.Add(i.ToString());
            i++;
        }
    }

原网站

版权声明
本文为[ying1228475251]所创,转载请带上原文链接,感谢
https://blog.csdn.net/ying1228475251/article/details/125187186