You can use an imported or built-in image asset to set a background image for your UI.
To use UI Builder to set a background image for your UI:
VisualElement
in UI Builder.When you set the background image, you must select a supported background image type:
Note: To use an SVG image as a background for a VisualElement
, you must install a package. To do so, in the Package Manager window, install the package com.unity.vectorgraphics
from Git URL.
To use C# to set a background image for your UI, assign the image to the VisualElement.backgroundImage
property.
The following code example shows how to set background images for visual elements:
// Use the AssetDatabase method to load the texture.
myElement1.style.backgroundImage = AssetDatabase.LoadAssetAtPath<Texture2D>("path/to/imageFile.png");
// Load the texture from project's Resources folder.
myElement2.style.backgroundImage = Resources.Load<Texture2D>("imageFile");
// Use the Unity Editor's default resources.
myElement3.style.backgroundImage = EditorGUIUtility.FindTexture("CloudConnect");
myElement4.style.backgroundImage = EditorGUIUtility.IconContent("FolderOpened Icon").image;