Version: 2019.1
public Vector2 contentOffset ;

Description

Пиксельное смещение применяется к контенту GUIstyle.

using UnityEngine;

public class Example : MonoBehaviour { // Prints the value of contentOffset.

void OnGUI() { Debug.Log(GUI.skin.button.contentOffset); } }