Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

EditorGUI.GetPropertyHeight

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static function GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);
public static function GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);
public static function GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);

パラメーター

property プロパティー領域の高さ
label 説明するテキストやイメージ
includeChildren 返される高さは子プロパティーの高さを含む必要があるか。

説明

PropertyField 制御に必要な高さを取得します。

高さは SerializedProperty の種類に基づいています。 includeChildren パラメーターにデフォルトである True が設定されている場合、 すべての展開された子の高さを含んでいます。 プロパティーにカスタムの PropertyDrawer がある場合、Property Drawer の中で返される高さを返します。 PropertyDrawers は常に子たちを含み、そのような場合は includeChildren パラメーターは無視されます。