Unity3d如何在代码中查找带名称的RawImage
Unity3d How to find RawImage with name in code
texture = tex;
GameObject.Find("Aciklama1L1").transform.GetChild(0).GetComponent<RawImage>().texture = tex;
我想更改 RawImage 纹理,但它不起作用。
[已解决]因为Gameobject是不可见的,无法使用find找到它。
texture = tex;
GameObject.Find("Aciklama1L1").transform.GetChild(0).GetComponent<RawImage>().texture = tex;
我想更改 RawImage 纹理,但它不起作用。
[已解决]因为Gameobject是不可见的,无法使用find找到它。