Fix return type for the exposed EditorResourcePicker method

This commit is contained in:
Yuri Sizov 2021-12-29 21:57:14 +03:00
parent 4e4dead41a
commit d9bf3e5e35
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
</description> </description>
</method> </method>
<method name="handle_menu_selected" qualifiers="virtual"> <method name="handle_menu_selected" qualifiers="virtual">
<return type="void" /> <return type="bool" />
<argument index="0" name="id" type="int" /> <argument index="0" name="id" type="int" />
<description> <description>
This virtual method can be implemented to handle context menu items not handled by default. See [method set_create_options]. This virtual method can be implemented to handle context menu items not handled by default. See [method set_create_options].

View file

@ -687,7 +687,7 @@ void EditorResourcePicker::_bind_methods() {
ClassDB::bind_method(D_METHOD("is_editable"), &EditorResourcePicker::is_editable); ClassDB::bind_method(D_METHOD("is_editable"), &EditorResourcePicker::is_editable);
ClassDB::add_virtual_method(get_class_static(), MethodInfo("set_create_options", PropertyInfo(Variant::OBJECT, "menu_node"))); ClassDB::add_virtual_method(get_class_static(), MethodInfo("set_create_options", PropertyInfo(Variant::OBJECT, "menu_node")));
ClassDB::add_virtual_method(get_class_static(), MethodInfo("handle_menu_selected", PropertyInfo(Variant::INT, "id"))); ClassDB::add_virtual_method(get_class_static(), MethodInfo(Variant::BOOL, "handle_menu_selected", PropertyInfo(Variant::INT, "id")));
ADD_PROPERTY(PropertyInfo(Variant::STRING, "base_type"), "set_base_type", "get_base_type"); ADD_PROPERTY(PropertyInfo(Variant::STRING, "base_type"), "set_base_type", "get_base_type");
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "edited_resource", PROPERTY_HINT_RESOURCE_TYPE, "Resource", 0), "set_edited_resource", "get_edited_resource"); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "edited_resource", PROPERTY_HINT_RESOURCE_TYPE, "Resource", 0), "set_edited_resource", "get_edited_resource");