1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

[GDScript] Fix get_method for lambda self Callables

This commit is contained in:
A Thousand Ships
2024-07-08 16:31:00 +02:00
parent ec02d406ca
commit f68ab70a6a
4 changed files with 31 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ public:
CompareEqualFunc get_compare_equal_func() const override;
CompareLessFunc get_compare_less_func() const override;
ObjectID get_object() const override;
StringName get_method() const override;
int get_argument_count(bool &r_is_valid) const override;
void call(const Variant **p_arguments, int p_argcount, Variant &r_return_value, Callable::CallError &r_call_error) const override;