当前位置:   article > 正文

Unity批量重命名 批量给图片赋值_unity给按钮赋值图片

unity给按钮赋值图片

如下图,Button有4个按钮 我们可以在程序运行的时候用代码动态的修改这些 button 的名字,这样当然可以,但是需要程序运行,还是会消耗程序的资源,等程序关闭,这些 button 的名字又会回到向下图一样的名字,

当然我们还有更简单的方式,即是Unity 自带的 Reset()函数,新建一个脚本挂载到 Content 上,代码如下:

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5.  
  6. public class NewBehaviourScript : MonoBehaviour
  7. {
  8.  
  9.     private void Reset()
  10.     {
  11.         int count = transform.childCount;
  12.         for (int index = 0; index < count; index++)
  13.         {
  14.             transform.GetChild(index).name = (index + 1).ToString();
  15.             transform.GetChild(index).GetChild(0).GetComponent<Text>().text = null;
  16.             transform.GetChild(index).GetComponent<Image>().color = new Color(55f, 55f, 55f, 0.5f);
  17.         }
  18.     }
  19. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/112562
推荐阅读
相关标签
  

闽ICP备14008679号