Skip to content

Commit ec9e923

Browse files
authored
Merge pull request #9079 from ericlathrop/patch-2
Fix method names
2 parents 43bcea0 + 38f1683 commit ec9e923

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/plugins/editor/inspector_plugins.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ return ``true`` if this plugin should handle the object or its properties.
9898
.. note:: This includes any :ref:`class_Resource` attached to the object.
9999

100100
You can implement four other methods to add controls to the inspector at
101-
specific positions. The ``parse_begin()`` and ``parse_end()`` methods are called
101+
specific positions. The ``_parse_begin()`` and ``_parse_end()`` methods are called
102102
only once at the beginning and the end of parsing for each object, respectively.
103103
They can add controls at the top or bottom of the inspector layout by calling
104104
``add_custom_control()``.
105105

106-
As the editor parses the object, it calls the ``parse_category()`` and
106+
As the editor parses the object, it calls the ``_parse_category()`` and
107107
``_parse_property()`` methods. There, in addition to ``add_custom_control()``,
108108
you can call both ``add_property_editor()`` and
109109
``add_property_editor_for_multiple_properties()``. Use these last two methods to

0 commit comments

Comments
 (0)