Version: 2021.3
public float fixedWidth ;

描述

如果不为 0,则使用该样式呈现的任何 GUI 元素都将具有此处指定的宽度。

using UnityEngine;

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

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