Version: 2020.2
言語: 日本語
public RectOffset padding ;

説明

コンテンツの始まりから GUIStyle の端までのスペース

using UnityEngine;

public class Example : MonoBehaviour { // Prints the left, right, top and down values of the GUIStyle overflow

RectOffset rctOff;

void OnGUI() { rctOff = GUI.skin.button.padding; Debug.Log("Left: " + rctOff.left + " Right: " + rctOff.right); Debug.Log("Top: " + rctOff.top + " Bottom: " + rctOff.bottom); } }