class_editorproperty.rst 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorProperty.xml.
  6. .. _class_EditorProperty:
  7. EditorProperty
  8. ==============
  9. **Inherits:** :ref:`Container<class_Container>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. Custom control for editing properties that can be added to the :ref:`EditorInspector<class_EditorInspector>`.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. A custom control for editing properties that can be added to the :ref:`EditorInspector<class_EditorInspector>`. It is added via :ref:`EditorInspectorPlugin<class_EditorInspectorPlugin>`.
  15. .. rst-class:: classref-reftable-group
  16. Properties
  17. ----------
  18. .. table::
  19. :widths: auto
  20. +-----------------------------+-------------------------------------------------------------------------+-----------+
  21. | :ref:`bool<class_bool>` | :ref:`checkable<class_EditorProperty_property_checkable>` | ``false`` |
  22. +-----------------------------+-------------------------------------------------------------------------+-----------+
  23. | :ref:`bool<class_bool>` | :ref:`checked<class_EditorProperty_property_checked>` | ``false`` |
  24. +-----------------------------+-------------------------------------------------------------------------+-----------+
  25. | :ref:`bool<class_bool>` | :ref:`deletable<class_EditorProperty_property_deletable>` | ``false`` |
  26. +-----------------------------+-------------------------------------------------------------------------+-----------+
  27. | :ref:`bool<class_bool>` | :ref:`draw_background<class_EditorProperty_property_draw_background>` | ``true`` |
  28. +-----------------------------+-------------------------------------------------------------------------+-----------+
  29. | :ref:`bool<class_bool>` | :ref:`draw_label<class_EditorProperty_property_draw_label>` | ``true`` |
  30. +-----------------------------+-------------------------------------------------------------------------+-----------+
  31. | :ref:`bool<class_bool>` | :ref:`draw_warning<class_EditorProperty_property_draw_warning>` | ``false`` |
  32. +-----------------------------+-------------------------------------------------------------------------+-----------+
  33. | :ref:`bool<class_bool>` | :ref:`keying<class_EditorProperty_property_keying>` | ``false`` |
  34. +-----------------------------+-------------------------------------------------------------------------+-----------+
  35. | :ref:`String<class_String>` | :ref:`label<class_EditorProperty_property_label>` | ``""`` |
  36. +-----------------------------+-------------------------------------------------------------------------+-----------+
  37. | :ref:`float<class_float>` | :ref:`name_split_ratio<class_EditorProperty_property_name_split_ratio>` | ``0.5`` |
  38. +-----------------------------+-------------------------------------------------------------------------+-----------+
  39. | :ref:`bool<class_bool>` | :ref:`read_only<class_EditorProperty_property_read_only>` | ``false`` |
  40. +-----------------------------+-------------------------------------------------------------------------+-----------+
  41. | :ref:`bool<class_bool>` | :ref:`selectable<class_EditorProperty_property_selectable>` | ``true`` |
  42. +-----------------------------+-------------------------------------------------------------------------+-----------+
  43. | :ref:`bool<class_bool>` | :ref:`use_folding<class_EditorProperty_property_use_folding>` | ``false`` |
  44. +-----------------------------+-------------------------------------------------------------------------+-----------+
  45. .. rst-class:: classref-reftable-group
  46. Methods
  47. -------
  48. .. table::
  49. :widths: auto
  50. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | |void| | :ref:`_set_read_only<class_EditorProperty_private_method__set_read_only>`\ (\ read_only\: :ref:`bool<class_bool>`\ ) |virtual| |
  52. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | |void| | :ref:`_update_property<class_EditorProperty_private_method__update_property>`\ (\ ) |virtual| |
  54. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | |void| | :ref:`add_focusable<class_EditorProperty_method_add_focusable>`\ (\ control\: :ref:`Control<class_Control>`\ ) |
  56. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | |void| | :ref:`deselect<class_EditorProperty_method_deselect>`\ (\ ) |
  58. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | |void| | :ref:`emit_changed<class_EditorProperty_method_emit_changed>`\ (\ property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`, field\: :ref:`StringName<class_StringName>` = &"", changing\: :ref:`bool<class_bool>` = false\ ) |
  60. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`Object<class_Object>` | :ref:`get_edited_object<class_EditorProperty_method_get_edited_object>`\ (\ ) |
  62. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`StringName<class_StringName>` | :ref:`get_edited_property<class_EditorProperty_method_get_edited_property>`\ (\ ) |const| |
  64. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`bool<class_bool>` | :ref:`is_selected<class_EditorProperty_method_is_selected>`\ (\ ) |const| |
  66. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | |void| | :ref:`select<class_EditorProperty_method_select>`\ (\ focusable\: :ref:`int<class_int>` = -1\ ) |
  68. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | |void| | :ref:`set_bottom_editor<class_EditorProperty_method_set_bottom_editor>`\ (\ editor\: :ref:`Control<class_Control>`\ ) |
  70. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | |void| | :ref:`set_label_reference<class_EditorProperty_method_set_label_reference>`\ (\ control\: :ref:`Control<class_Control>`\ ) |
  72. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | |void| | :ref:`set_object_and_property<class_EditorProperty_method_set_object_and_property>`\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`\ ) |
  74. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | |void| | :ref:`update_property<class_EditorProperty_method_update_property>`\ (\ ) |
  76. +-------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. .. rst-class:: classref-section-separator
  78. ----
  79. .. rst-class:: classref-descriptions-group
  80. Signals
  81. -------
  82. .. _class_EditorProperty_signal_multiple_properties_changed:
  83. .. rst-class:: classref-signal
  84. **multiple_properties_changed**\ (\ properties\: :ref:`PackedStringArray<class_PackedStringArray>`, value\: :ref:`Array<class_Array>`\ ) :ref:`🔗<class_EditorProperty_signal_multiple_properties_changed>`
  85. Emit it if you want multiple properties modified at the same time. Do not use if added via :ref:`EditorInspectorPlugin._parse_property()<class_EditorInspectorPlugin_private_method__parse_property>`.
  86. .. rst-class:: classref-item-separator
  87. ----
  88. .. _class_EditorProperty_signal_object_id_selected:
  89. .. rst-class:: classref-signal
  90. **object_id_selected**\ (\ property\: :ref:`StringName<class_StringName>`, id\: :ref:`int<class_int>`\ ) :ref:`🔗<class_EditorProperty_signal_object_id_selected>`
  91. Used by sub-inspectors. Emit it if what was selected was an Object ID.
  92. .. rst-class:: classref-item-separator
  93. ----
  94. .. _class_EditorProperty_signal_property_can_revert_changed:
  95. .. rst-class:: classref-signal
  96. **property_can_revert_changed**\ (\ property\: :ref:`StringName<class_StringName>`, can_revert\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorProperty_signal_property_can_revert_changed>`
  97. Emitted when the revertability (i.e., whether it has a non-default value and thus is displayed with a revert icon) of a property has changed.
  98. .. rst-class:: classref-item-separator
  99. ----
  100. .. _class_EditorProperty_signal_property_changed:
  101. .. rst-class:: classref-signal
  102. **property_changed**\ (\ property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`, field\: :ref:`StringName<class_StringName>`, changing\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorProperty_signal_property_changed>`
  103. Do not emit this manually, use the :ref:`emit_changed()<class_EditorProperty_method_emit_changed>` method instead.
  104. .. rst-class:: classref-item-separator
  105. ----
  106. .. _class_EditorProperty_signal_property_checked:
  107. .. rst-class:: classref-signal
  108. **property_checked**\ (\ property\: :ref:`StringName<class_StringName>`, checked\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorProperty_signal_property_checked>`
  109. Emitted when a property was checked. Used internally.
  110. .. rst-class:: classref-item-separator
  111. ----
  112. .. _class_EditorProperty_signal_property_deleted:
  113. .. rst-class:: classref-signal
  114. **property_deleted**\ (\ property\: :ref:`StringName<class_StringName>`\ ) :ref:`🔗<class_EditorProperty_signal_property_deleted>`
  115. Emitted when a property was deleted. Used internally.
  116. .. rst-class:: classref-item-separator
  117. ----
  118. .. _class_EditorProperty_signal_property_favorited:
  119. .. rst-class:: classref-signal
  120. **property_favorited**\ (\ property\: :ref:`StringName<class_StringName>`, favorited\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorProperty_signal_property_favorited>`
  121. Emit it if you want to mark a property as favorited, making it appear at the top of the inspector.
  122. .. rst-class:: classref-item-separator
  123. ----
  124. .. _class_EditorProperty_signal_property_keyed:
  125. .. rst-class:: classref-signal
  126. **property_keyed**\ (\ property\: :ref:`StringName<class_StringName>`\ ) :ref:`🔗<class_EditorProperty_signal_property_keyed>`
  127. Emit it if you want to add this value as an animation key (check for keying being enabled first).
  128. .. rst-class:: classref-item-separator
  129. ----
  130. .. _class_EditorProperty_signal_property_keyed_with_value:
  131. .. rst-class:: classref-signal
  132. **property_keyed_with_value**\ (\ property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_EditorProperty_signal_property_keyed_with_value>`
  133. Emit it if you want to key a property with a single value.
  134. .. rst-class:: classref-item-separator
  135. ----
  136. .. _class_EditorProperty_signal_property_pinned:
  137. .. rst-class:: classref-signal
  138. **property_pinned**\ (\ property\: :ref:`StringName<class_StringName>`, pinned\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorProperty_signal_property_pinned>`
  139. Emit it if you want to mark (or unmark) the value of a property for being saved regardless of being equal to the default value.
  140. The default value is the one the property will get when the node is just instantiated and can come from an ancestor scene in the inheritance/instantiation chain, a script or a builtin class.
  141. .. rst-class:: classref-item-separator
  142. ----
  143. .. _class_EditorProperty_signal_resource_selected:
  144. .. rst-class:: classref-signal
  145. **resource_selected**\ (\ path\: :ref:`String<class_String>`, resource\: :ref:`Resource<class_Resource>`\ ) :ref:`🔗<class_EditorProperty_signal_resource_selected>`
  146. If you want a sub-resource to be edited, emit this signal with the resource.
  147. .. rst-class:: classref-item-separator
  148. ----
  149. .. _class_EditorProperty_signal_selected:
  150. .. rst-class:: classref-signal
  151. **selected**\ (\ path\: :ref:`String<class_String>`, focusable_idx\: :ref:`int<class_int>`\ ) :ref:`🔗<class_EditorProperty_signal_selected>`
  152. Emitted when selected. Used internally.
  153. .. rst-class:: classref-section-separator
  154. ----
  155. .. rst-class:: classref-descriptions-group
  156. Property Descriptions
  157. ---------------------
  158. .. _class_EditorProperty_property_checkable:
  159. .. rst-class:: classref-property
  160. :ref:`bool<class_bool>` **checkable** = ``false`` :ref:`🔗<class_EditorProperty_property_checkable>`
  161. .. rst-class:: classref-property-setget
  162. - |void| **set_checkable**\ (\ value\: :ref:`bool<class_bool>`\ )
  163. - :ref:`bool<class_bool>` **is_checkable**\ (\ )
  164. Used by the inspector, set to ``true`` when the property is checkable.
  165. .. rst-class:: classref-item-separator
  166. ----
  167. .. _class_EditorProperty_property_checked:
  168. .. rst-class:: classref-property
  169. :ref:`bool<class_bool>` **checked** = ``false`` :ref:`🔗<class_EditorProperty_property_checked>`
  170. .. rst-class:: classref-property-setget
  171. - |void| **set_checked**\ (\ value\: :ref:`bool<class_bool>`\ )
  172. - :ref:`bool<class_bool>` **is_checked**\ (\ )
  173. Used by the inspector, set to ``true`` when the property is checked.
  174. .. rst-class:: classref-item-separator
  175. ----
  176. .. _class_EditorProperty_property_deletable:
  177. .. rst-class:: classref-property
  178. :ref:`bool<class_bool>` **deletable** = ``false`` :ref:`🔗<class_EditorProperty_property_deletable>`
  179. .. rst-class:: classref-property-setget
  180. - |void| **set_deletable**\ (\ value\: :ref:`bool<class_bool>`\ )
  181. - :ref:`bool<class_bool>` **is_deletable**\ (\ )
  182. Used by the inspector, set to ``true`` when the property can be deleted by the user.
  183. .. rst-class:: classref-item-separator
  184. ----
  185. .. _class_EditorProperty_property_draw_background:
  186. .. rst-class:: classref-property
  187. :ref:`bool<class_bool>` **draw_background** = ``true`` :ref:`🔗<class_EditorProperty_property_draw_background>`
  188. .. rst-class:: classref-property-setget
  189. - |void| **set_draw_background**\ (\ value\: :ref:`bool<class_bool>`\ )
  190. - :ref:`bool<class_bool>` **is_draw_background**\ (\ )
  191. Used by the inspector, set to ``true`` when the property label is drawn.
  192. .. rst-class:: classref-item-separator
  193. ----
  194. .. _class_EditorProperty_property_draw_label:
  195. .. rst-class:: classref-property
  196. :ref:`bool<class_bool>` **draw_label** = ``true`` :ref:`🔗<class_EditorProperty_property_draw_label>`
  197. .. rst-class:: classref-property-setget
  198. - |void| **set_draw_label**\ (\ value\: :ref:`bool<class_bool>`\ )
  199. - :ref:`bool<class_bool>` **is_draw_label**\ (\ )
  200. Used by the inspector, set to ``true`` when the property background is drawn.
  201. .. rst-class:: classref-item-separator
  202. ----
  203. .. _class_EditorProperty_property_draw_warning:
  204. .. rst-class:: classref-property
  205. :ref:`bool<class_bool>` **draw_warning** = ``false`` :ref:`🔗<class_EditorProperty_property_draw_warning>`
  206. .. rst-class:: classref-property-setget
  207. - |void| **set_draw_warning**\ (\ value\: :ref:`bool<class_bool>`\ )
  208. - :ref:`bool<class_bool>` **is_draw_warning**\ (\ )
  209. Used by the inspector, set to ``true`` when the property is drawn with the editor theme's warning color. This is used for editable children's properties.
  210. .. rst-class:: classref-item-separator
  211. ----
  212. .. _class_EditorProperty_property_keying:
  213. .. rst-class:: classref-property
  214. :ref:`bool<class_bool>` **keying** = ``false`` :ref:`🔗<class_EditorProperty_property_keying>`
  215. .. rst-class:: classref-property-setget
  216. - |void| **set_keying**\ (\ value\: :ref:`bool<class_bool>`\ )
  217. - :ref:`bool<class_bool>` **is_keying**\ (\ )
  218. Used by the inspector, set to ``true`` when the property can add keys for animation.
  219. .. rst-class:: classref-item-separator
  220. ----
  221. .. _class_EditorProperty_property_label:
  222. .. rst-class:: classref-property
  223. :ref:`String<class_String>` **label** = ``""`` :ref:`🔗<class_EditorProperty_property_label>`
  224. .. rst-class:: classref-property-setget
  225. - |void| **set_label**\ (\ value\: :ref:`String<class_String>`\ )
  226. - :ref:`String<class_String>` **get_label**\ (\ )
  227. Set this property to change the label (if you want to show one).
  228. .. rst-class:: classref-item-separator
  229. ----
  230. .. _class_EditorProperty_property_name_split_ratio:
  231. .. rst-class:: classref-property
  232. :ref:`float<class_float>` **name_split_ratio** = ``0.5`` :ref:`🔗<class_EditorProperty_property_name_split_ratio>`
  233. .. rst-class:: classref-property-setget
  234. - |void| **set_name_split_ratio**\ (\ value\: :ref:`float<class_float>`\ )
  235. - :ref:`float<class_float>` **get_name_split_ratio**\ (\ )
  236. Space distribution ratio between the label and the editing field.
  237. .. rst-class:: classref-item-separator
  238. ----
  239. .. _class_EditorProperty_property_read_only:
  240. .. rst-class:: classref-property
  241. :ref:`bool<class_bool>` **read_only** = ``false`` :ref:`🔗<class_EditorProperty_property_read_only>`
  242. .. rst-class:: classref-property-setget
  243. - |void| **set_read_only**\ (\ value\: :ref:`bool<class_bool>`\ )
  244. - :ref:`bool<class_bool>` **is_read_only**\ (\ )
  245. Used by the inspector, set to ``true`` when the property is read-only.
  246. .. rst-class:: classref-item-separator
  247. ----
  248. .. _class_EditorProperty_property_selectable:
  249. .. rst-class:: classref-property
  250. :ref:`bool<class_bool>` **selectable** = ``true`` :ref:`🔗<class_EditorProperty_property_selectable>`
  251. .. rst-class:: classref-property-setget
  252. - |void| **set_selectable**\ (\ value\: :ref:`bool<class_bool>`\ )
  253. - :ref:`bool<class_bool>` **is_selectable**\ (\ )
  254. Used by the inspector, set to ``true`` when the property is selectable.
  255. .. rst-class:: classref-item-separator
  256. ----
  257. .. _class_EditorProperty_property_use_folding:
  258. .. rst-class:: classref-property
  259. :ref:`bool<class_bool>` **use_folding** = ``false`` :ref:`🔗<class_EditorProperty_property_use_folding>`
  260. .. rst-class:: classref-property-setget
  261. - |void| **set_use_folding**\ (\ value\: :ref:`bool<class_bool>`\ )
  262. - :ref:`bool<class_bool>` **is_using_folding**\ (\ )
  263. Used by the inspector, set to ``true`` when the property is using folding.
  264. .. rst-class:: classref-section-separator
  265. ----
  266. .. rst-class:: classref-descriptions-group
  267. Method Descriptions
  268. -------------------
  269. .. _class_EditorProperty_private_method__set_read_only:
  270. .. rst-class:: classref-method
  271. |void| **_set_read_only**\ (\ read_only\: :ref:`bool<class_bool>`\ ) |virtual| :ref:`🔗<class_EditorProperty_private_method__set_read_only>`
  272. Called when the read-only status of the property is changed. It may be used to change custom controls into a read-only or modifiable state.
  273. .. rst-class:: classref-item-separator
  274. ----
  275. .. _class_EditorProperty_private_method__update_property:
  276. .. rst-class:: classref-method
  277. |void| **_update_property**\ (\ ) |virtual| :ref:`🔗<class_EditorProperty_private_method__update_property>`
  278. When this virtual function is called, you must update your editor.
  279. .. rst-class:: classref-item-separator
  280. ----
  281. .. _class_EditorProperty_method_add_focusable:
  282. .. rst-class:: classref-method
  283. |void| **add_focusable**\ (\ control\: :ref:`Control<class_Control>`\ ) :ref:`🔗<class_EditorProperty_method_add_focusable>`
  284. If any of the controls added can gain keyboard focus, add it here. This ensures that focus will be restored if the inspector is refreshed.
  285. .. rst-class:: classref-item-separator
  286. ----
  287. .. _class_EditorProperty_method_deselect:
  288. .. rst-class:: classref-method
  289. |void| **deselect**\ (\ ) :ref:`🔗<class_EditorProperty_method_deselect>`
  290. Draw property as not selected. Used by the inspector.
  291. .. rst-class:: classref-item-separator
  292. ----
  293. .. _class_EditorProperty_method_emit_changed:
  294. .. rst-class:: classref-method
  295. |void| **emit_changed**\ (\ property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`, field\: :ref:`StringName<class_StringName>` = &"", changing\: :ref:`bool<class_bool>` = false\ ) :ref:`🔗<class_EditorProperty_method_emit_changed>`
  296. If one or several properties have changed, this must be called. ``field`` is used in case your editor can modify fields separately (as an example, Vector3.x). The ``changing`` argument avoids the editor requesting this property to be refreshed (leave as ``false`` if unsure).
  297. .. rst-class:: classref-item-separator
  298. ----
  299. .. _class_EditorProperty_method_get_edited_object:
  300. .. rst-class:: classref-method
  301. :ref:`Object<class_Object>` **get_edited_object**\ (\ ) :ref:`🔗<class_EditorProperty_method_get_edited_object>`
  302. Gets the edited object.
  303. .. rst-class:: classref-item-separator
  304. ----
  305. .. _class_EditorProperty_method_get_edited_property:
  306. .. rst-class:: classref-method
  307. :ref:`StringName<class_StringName>` **get_edited_property**\ (\ ) |const| :ref:`🔗<class_EditorProperty_method_get_edited_property>`
  308. Gets the edited property. If your editor is for a single property (added via :ref:`EditorInspectorPlugin._parse_property()<class_EditorInspectorPlugin_private_method__parse_property>`), then this will return the property.
  309. .. rst-class:: classref-item-separator
  310. ----
  311. .. _class_EditorProperty_method_is_selected:
  312. .. rst-class:: classref-method
  313. :ref:`bool<class_bool>` **is_selected**\ (\ ) |const| :ref:`🔗<class_EditorProperty_method_is_selected>`
  314. Returns ``true`` if property is drawn as selected. Used by the inspector.
  315. .. rst-class:: classref-item-separator
  316. ----
  317. .. _class_EditorProperty_method_select:
  318. .. rst-class:: classref-method
  319. |void| **select**\ (\ focusable\: :ref:`int<class_int>` = -1\ ) :ref:`🔗<class_EditorProperty_method_select>`
  320. Draw property as selected. Used by the inspector.
  321. .. rst-class:: classref-item-separator
  322. ----
  323. .. _class_EditorProperty_method_set_bottom_editor:
  324. .. rst-class:: classref-method
  325. |void| **set_bottom_editor**\ (\ editor\: :ref:`Control<class_Control>`\ ) :ref:`🔗<class_EditorProperty_method_set_bottom_editor>`
  326. Puts the ``editor`` control below the property label. The control must be previously added using :ref:`Node.add_child()<class_Node_method_add_child>`.
  327. .. rst-class:: classref-item-separator
  328. ----
  329. .. _class_EditorProperty_method_set_label_reference:
  330. .. rst-class:: classref-method
  331. |void| **set_label_reference**\ (\ control\: :ref:`Control<class_Control>`\ ) :ref:`🔗<class_EditorProperty_method_set_label_reference>`
  332. Used by the inspector, set to a control that will be used as a reference to calculate the size of the label.
  333. .. rst-class:: classref-item-separator
  334. ----
  335. .. _class_EditorProperty_method_set_object_and_property:
  336. .. rst-class:: classref-method
  337. |void| **set_object_and_property**\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`\ ) :ref:`🔗<class_EditorProperty_method_set_object_and_property>`
  338. Assigns object and property to edit.
  339. .. rst-class:: classref-item-separator
  340. ----
  341. .. _class_EditorProperty_method_update_property:
  342. .. rst-class:: classref-method
  343. |void| **update_property**\ (\ ) :ref:`🔗<class_EditorProperty_method_update_property>`
  344. Forces refresh of the property display.
  345. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  346. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  347. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  348. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  349. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  350. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  351. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  352. .. |void| replace:: :abbr:`void (No return value.)`