The Image control displays a non-interactive image to the user. This can be used for decoration, icons, etc, and the image can also be changed from a script to reflect changes in other controls. The control is similar to the Raw Image control but offers more options for animating the image and accurately filing the control rectangle. However, the Image control requires its texture to be a Sprite, while the Raw Image can accept any texture.
Property: | Function: |
---|---|
Source Image | The texture that represents the image to display (which must be imported as a Sprite). |
Color | The color to apply to the image. |
Material | The Material to use for rendering the image. |
Image Type | The method used to display the image. The options are Simple, Sliced, Tiled and Filled (see below). |
Preserve Aspect (Simple and Filled Image Types only) | Should the image’s original proportions of height and width be kept rather than rescaled? |
Fill Center (Sliced and Tiled Image Types only) | Should the center slice of the image be filled as well as the borders? |
Fill Method (Filled Image Type only) | Specifies the way the image should “grow” to fill the space during an animation. The options are Horizontal, Vertical, Radial90, Radial180 and Radial360 (see below). |
Fill Origin (Filled Image Type only) | The point in the image from which the fill should proceed. The options are various combinations of Bottom, Top, Left and Right, depending on which Fill Method is selected (see below). |
Fill Amount (Filled Image Type only) | The fraction of the image (range 0.0 to 1.0) that is currently filled. |
Clockwise (Filled Image Type only) | Should the fill proceed in a clockwise direction? (Radial fills only.) |
Set Native Size | Button to set the dimensions of the image box to the original pixel size of the texture. |
The image to display must be imported as a Sprite to work with the Image control. A number of different Image Types can be set, which affect the method used to fill the control rectangle with the texture:
A useful animation effect for images is the so-called “wipe” effect that gradually reveals the image until it is visible in full. The Filled image type allows you to control the position of the wipe via the Fill Amount property. This varies from 0.0 (empty image) to 1.0 (wipe complete).
The Horizontal and Vertical fill methods wipe across the image; the Fill Origin value specifies whether the wipe proceeds from the left/top or from the right/bottom.
The Radial fill methods wipe the image in an angular fashion around the center, one of the corners or one of the edge centers. The Clockwise property can be switched on or off the change the direction of rotation.