imagePosition
How image and text of the GUIContent is combined.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public ImagePosition imagePosition { get; set; }
Examples
using UnityEngine;public class ExampleScript : MonoBehaviour{ // Prints how image and text is placed. void OnGUI() { Debug.Log(GUI.skin.button.imagePosition); }}