版本: Unity 6 (6000.0)
语言英语
  • C#

GUILayout.MaxWidth

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每项建议变更,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static GUILayoutOption MaxWidth(float maxWidth);

描述

传递给控件以指定最大宽度的选项。


窗口允许的最大宽度。

using UnityEngine;

public class ExampleScript : MonoBehaviour { // Draws a window you can resize between 80px and 200px height // Just click the box inside the window and move your mouse Rect windowRect = new Rect(10, 10, 100, 100); bool scaling = false;

void OnGUI() { windowRect = GUILayout.Window(0, windowRect, ScalingWindow, "resizeable", GUILayout.MinHeight(80), GUILayout.MaxHeight(200)); }

void ScalingWindow(int windowID) { GUILayout.Box("", GUILayout.Width(20), GUILayout.Height(20)); if (Event.current.type == EventType.MouseUp) { scaling = false; } else if (Event.current.type == EventType.MouseDown && GUILayoutUtility.GetLastRect().Contains(Event.current.mousePosition)) { scaling = true; }

if (scaling) { windowRect = new Rect(windowRect.x, windowRect.y, windowRect.width + Event.current.delta.x, windowRect.height + Event.current.delta.y); } } }