public ImagePosition imagePosition;
Description 描述
How image and text of the GUIContent is combined.
using UnityEngine;
public class ExampleScript : MonoBehaviour { // Prints how image and text is placed. void OnGUI() { Debug.Log(GUI.skin.button.imagePosition); } }