Version: 2020.1
言語: 日本語
public Vector2 contentOffset ;

説明

この GUIstyle のコンテンツに適用する Pixel Offset

using UnityEngine;

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

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