言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

EditorStyles.inspectorFullWidthMargins

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static var inspectorFullWidthMargins: GUIStyle;
public static GUIStyle inspectorFullWidthMargins;
public static inspectorFullWidthMargins as GUIStyle

Description

インスペクタで使用される全幅のマージンを取得するために、コンテンツをこのスタイルで垂直グループでラップします

デフォルトではインスペクタ上のコンテンツは大きな左マージン、小さな右マージンとなっています。外見を安定させるには、多くの GUI でデフォルトのマージンが使用されるべきです。 しかし、いくつかの特定の GUI 要素はインスペクタ全体幅を占有して、両端のマージンを小さくすると良い場合があります。デフォルトのマージンを無効にするには、カスタムエディタで Editor.UseDefaultMargins メソッドをオーバーライドして false を返すようにします。次に GUI コンテンツを好みの垂直グループによりラップ出来ます。例えば GUI の一部を EditorStyles.inspectorFullWidthMargins スタイルによりラップして、他の部分を EditorStyles.inspectorDefaultMargins スタイルの垂直グループでラップすることが出来ます。 See Also: EditorGUILayout.BeginVertical, EditorGUILayout.EndVertical, Editor.UseDefaultMargins, EditorStyles.inspectorDefaultMargins.