diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-05-23 20:22:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 20:22:44 +0200 |
commit | 57d21ebeda8460036efac1f70cd9ecd0896de517 (patch) | |
tree | fe062176b1c3fa2e4f5fd7a42bea39ee2fa7dd43 /core/message_queue.h | |
parent | 46450979dbcb6014957d8849c98efa81d0c921f4 (diff) | |
parent | 3ad694018fe02447d9ad3051b9d2f6616bc52e74 (diff) |
Merge pull request #38396 from nekomatata/unexpose-sort-children
Fix Container sorting not working when overriding _sort_children in gdscript
Diffstat (limited to 'core/message_queue.h')
-rw-r--r-- | core/message_queue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/message_queue.h b/core/message_queue.h index 8e50f1b2b7..7d13e26208 100644 --- a/core/message_queue.h +++ b/core/message_queue.h @@ -79,6 +79,7 @@ public: Error push_notification(ObjectID p_id, int p_notification); Error push_set(ObjectID p_id, const StringName &p_prop, const Variant &p_value); Error push_callable(const Callable &p_callable, const Variant **p_args, int p_argcount, bool p_show_error = false); + Error push_callable(const Callable &p_callable, VARIANT_ARG_LIST); Error push_call(Object *p_object, const StringName &p_method, VARIANT_ARG_LIST); Error push_notification(Object *p_object, int p_notification); |