当前位置:   article > 正文

unity中获取button文本的内容_ubiot中参数怎么提取文本

ubiot中参数怎么提取文本
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. using System;
  5. public class ButtonContent : MonoBehaviour{
  6. public Button btn;
  7. void Start(){
  8. btn = GameObject.Find("填写button名").getComponent<Button>(); //-----------(1)
  9. Text text = btn.transform.Find("Text").getComponent<Text>(); //------------(2)
  10. //或者吧(1)(2)合并成:
  11. // Text text = GameObject.Find("填写button名/Text").getComponent<Text>();
  12. Debug.Log(text.text.toString());
  13. //其实就一条语句
  14. // Debug.Log(GameObject.Find("填写button名/Text").getComponent<Text>().text.toString());
  15. }
  16. }

这样就可以获取button中的文本内容。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/827176
推荐阅读
相关标签
  

闽ICP备14008679号