其他分享
首页 > 其他分享> > unity中让Texture2D显示在Image上的问题

unity中让Texture2D显示在Image上的问题

作者:互联网

让一张自己处理过的Texture2D显示在Image上,网上基本上都是这么写的:

image.material.mainTexture = texture2d;

但是这么做带来的问题是,如果你赋值的image下还有一张image,你会发现这个子image也被赋值了这张Texture2D。所以,为了解决这种问题,不妨用RawImage:

rawImage.texture = texture2d;

这样,只会赋给这张rawimage,而子物体不受影响。

标签:texture2d,这张,Image,unity,Texture2D,image,赋值
来源: https://www.cnblogs.com/BlueTargetDrone/p/11420137.html