Merge pull request #81426 from Rubonnek/expose-inspector-methods

[3.x] Expose `EditorInspector::get_edited_object` to GDScript
This commit is contained in:
Rémi Verschelde 2024-02-07 09:39:24 +01:00
commit 60b34ed67d
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 7 additions and 0 deletions

View file

@ -13,6 +13,12 @@
<tutorials> <tutorials>
</tutorials> </tutorials>
<methods> <methods>
<method name="get_edited_object">
<return type="Object" />
<description>
Returns the object currently selected in this inspector.
</description>
</method>
<method name="refresh"> <method name="refresh">
<return type="void" /> <return type="void" />
<description> <description>

View file

@ -2331,6 +2331,7 @@ void EditorInspector::_bind_methods() {
ClassDB::bind_method("_object_id_selected", &EditorInspector::_object_id_selected); ClassDB::bind_method("_object_id_selected", &EditorInspector::_object_id_selected);
ClassDB::bind_method("_vscroll_changed", &EditorInspector::_vscroll_changed); ClassDB::bind_method("_vscroll_changed", &EditorInspector::_vscroll_changed);
ClassDB::bind_method("_feature_profile_changed", &EditorInspector::_feature_profile_changed); ClassDB::bind_method("_feature_profile_changed", &EditorInspector::_feature_profile_changed);
ClassDB::bind_method("get_edited_object", &EditorInspector::get_edited_object);
ClassDB::bind_method("refresh", &EditorInspector::refresh); ClassDB::bind_method("refresh", &EditorInspector::refresh);