Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


image

The texture to display in this image. If you assign a Texture or Texture2D, the Image element will resize and show the assigned texture.
Read time 1 minuteLast updated 5 days ago

Definition

public Texture image { get; set; }

Remarks

The following example creates an
Image
element and assigns a texture to it.

Examples

using UnityEngine;using UnityEngine.UIElements;public class AddImageExample : MonoBehaviour{ public Texture2D myTexture; void OnEnable() { var root = GetComponent<UIDocument>().rootVisualElement; var imageElement = new Image(); imageElement.image = myTexture; root.Add(imageElement); }}