本文整理匯總了C#中UnityEngine.GUIStyle.CalcSizeWithConstraints方法的典型用法代碼示例。如果您正苦於以下問題:C# GUIStyle.CalcSizeWithConstraints方法的具體用法?C# GUIStyle.CalcSizeWithConstraints怎麽用?C# GUIStyle.CalcSizeWithConstraints使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UnityEngine.GUIStyle
的用法示例。
在下文中一共展示了GUIStyle.CalcSizeWithConstraints方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DoGetRect
private static Rect DoGetRect(GUIContent content, GUIStyle style, GUILayoutOption[] options)
{
GUIUtility.CheckOnGUI();
switch (Event.current.type)
{
case EventType.Layout:
if (style.isHeightDependantOnWidth)
{
current.topLevel.Add(new GUIWordWrapSizer(style, content, options));
}
else
{
Vector2 constraints = new Vector2(0f, 0f);
if (options != null)
{
foreach (GUILayoutOption option in options)
{
switch (option.type)
{
case GUILayoutOption.Type.maxHeight:
constraints.y = (float) option.value;
break;
case GUILayoutOption.Type.maxWidth:
constraints.x = (float) option.value;
break;
}
}
}
Vector2 vector2 = style.CalcSizeWithConstraints(content, constraints);
current.topLevel.Add(new GUILayoutEntry(vector2.x, vector2.x, vector2.y, vector2.y, style, options));
}
return kDummyRect;
case EventType.Used:
return kDummyRect;
}
GUILayoutEntry next = current.topLevel.GetNext();
GUIDebugger.LogLayoutEntry(next.rect, next.margin, next.style);
return next.rect;
}