UGUI 学习笔记 5 Raw Image

Raw Image
1. 属性详解
Texture : The texture that represents the image to display. 纹理
Color : The color to apply to the image. 颜色
Material : The Material to use for rendering the image. 材质球
UV Rectangle : The image’s offset and size within the control rectangle, given in normalized coordinates (range 0.0 to 1.0).The edges of the image are stretched to fill the space around the UV rectangle. UV矩形
2. UV Rect 图片显示的区域。
U是图片在显示器水平方向上的坐标,V是图片在显示器垂直方向上的坐标,取值在0~1之间。
X,Y是坐标点,原点在图片的左下角。W,H是显示区域的宽和高。
3. 代码控制
UGUI 学习笔记 5 Raw Image
换图,obj.texture=new Texture();
播放UV动画
UGUI 学习笔记 5 Raw Image
改变RawImage 中的UV Rect参数。
效果图
UGUI 学习笔记 5 Raw Image