このクラスは GUI クラスの機能と同じように動作します。また、EditorGUILayout クラスと機能が一致するよう実装されています。
actionKey | プラットフォームに依存する " Action " する修飾子キーが押されているか。(Read Only) |
indentLevel | フィールドラベルのインデントラベル |
showMixedValue | 次のコントロールが与える編集する複数の異なる値の Appearance を作成します。 |
BeginChangeCheck | Starts a new code block to check for GUI changes. |
BeginDisabledGroup | BeginDisabledGroup と EndDisabledGroup で囲んだ GUI グループ内の GUI 要素を操作不可にする場合に使用されます。 |
BeginFoldoutHeaderGroup | それの左側に折り畳み矢印でラベルを作成します。 |
BeginProperty | SerializedPropertyを GUI で管理しやすくするようにするためのプロパティーのラッパーである GUI グループを作成します |
BoundsField | Makes Center and Extents field for entering a Bounds. |
BoundsIntField | Makes Position and Size field for entering a BoundsInt. |
CanCacheInspectorGUI | Get whether a SerializedProperty's inspector GUI can be cached. |
ColorField | Makes a field for selecting a Color. |
CurveField | Makes a field for editing an AnimationCurve. |
DelayedDoubleField | Makes a delayed text field for entering doubles. |
DelayedFloatField | Makes a delayed text field for entering floats. |
DelayedIntField | Makes a delayed text field for entering integers. |
DelayedTextField | Makes a delayed text field. |
DoubleField | Makes a text field for entering doubles. |
DrawPreviewTexture | 矩形内にテクスチャを描画します。 |
DrawRect | 現在の Editor Window 内の指定された位置とサイズに色で塗りつぶした矩形を描画します。 |
DrawTextureAlpha | 矩形内のテクスチャのアルファチャネルを描画します。 |
DropdownButton | Makes a button that reacts to mouse down, for displaying your own dropdown content. |
DropShadowLabel | ドロップシャドウ付きのラベルを描画します。 |
EndChangeCheck | Ends a code block and checks for any GUI changes. |
EndDisabledGroup | BeginDisabledGroup で始まった Disabled group を終了します。 |
EndFoldoutHeaderGroup | Closes a group started with BeginFoldoutHeaderGroup. See Also: EditorGUILayout.BeginFoldoutHeaderGroup. |
EndProperty | BeginProperty と開始した Property Wrapper を終了します。 |
EnumFlagsField | Displays a menu with an option for every value of the enum type when clicked. An option for the value 0 with name "Nothing" and an option for the value ~0 (that is, all bits set) with the name "Everything" are always displayed at the top of the menu. The names for the values 0 and ~0 can be overriden by defining these values in the enum type. |
EnumPopup | Makes an enum popup selection field. |
FloatField | Makes a text field for entering floats. |
FocusTextInControl | 名前付きのテキストフィールドにキーボードフォーカスを移動し、コンテンツの編集を開始します。 |
Foldout | Makes a label with a foldout arrow to the left of it. |
GetPropertyHeight | PropertyField 制御に必要な高さを取得します。 |
GradientField | Makes a field for editing a Gradient. |
HandlePrefixLabel | Makes a label for some control. |
HelpBox | Makes a help box with a message to the user. |
InspectorTitlebar | Makes an inspector-window-like titlebar. |
IntField | Makes a text field for entering integers. |
IntPopup | Makes an integer popup selection field. |
IntSlider | Makes a slider the user can drag to change an integer value between a min and a max. |
LabelField | Makes a label field. (Useful for showing read-only info.) |
LayerField | Makes a layer selection field. |
LinkButton | Make a clickable link label. |
LongField | Makes a text field for entering long integers. |
MaskField | Makes a field for masks. |
MinMaxSlider | Makes a special slider the user can use to specify a range between a min and a max. |
MultiFloatField | Makes a multi-control with text fields for entering multiple floats in the same line. |
MultiIntField | Makes a multi-control with text fields for entering multiple integers in the same line. |
MultiPropertyField | Makes a multi-control with several property fields in the same line. |
ObjectField | Makes an object field. You can assign objects either by drag and drop objects or by selecting an object using the Object Picker. |
PasswordField | Makes a text field where the user can enter a password. |
Popup | Makes a generic popup selection field. |
PrefixLabel | Makes a label in front of some control. |
ProgressBar | Makes a progress bar. |
PropertyField | Use this to make a field for a SerializedProperty in the Editor. |
RectField | Makes an X, Y, W, and H field for entering a Rect. |
RectIntField | Makes an X, Y, W, and H field for entering a RectInt. |
SelectableLabel | Makes a selectable label field. (Useful for showing read-only info that can be copy-pasted.) |
Slider | Makes a slider the user can drag to change a value between a min and a max. |
TagField | Makes a tag selection field. |
TextArea | Makes a text area. |
TextField | Makes a text field. |
Toggle | Makes a toggle. |
ToggleLeft | Makes a toggle field where the toggle is to the left and the label immediately to the right of it. |
Vector2Field | Makes an X and Y field for entering a Vector2. |
Vector2IntField | Makes an X and Y integer field for entering a Vector2Int. |
Vector3Field | Makes an X, Y, and Z field for entering a Vector3. |
Vector3IntField | Makes an X, Y, and Z integer field for entering a Vector3Int. |
Vector4Field | Makes an X, Y, Z, and W field for entering a Vector4. |
hyperLinkClicked | Event used to react on clicks on a text hyperlink part. |