diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-11-16 08:49:26 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-11-16 08:49:26 -0300 |
commit | 0b1e93ccd43815d93de031b4f23fbfcd9ae7a34c (patch) | |
tree | d0d09cf6c744eb61438ed6ce775eafed22f5b4a1 /core/object.h | |
parent | 26d33d1c6eedf9271bac20a24ea37453c21ef890 (diff) | |
download | redot-engine-0b1e93ccd43815d93de031b4f23fbfcd9ae7a34c.tar.gz |
-Make sure monitorable cant be flipped while flushing queries, fixes #17330
-Also added set_deferred, this was missing.
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h index 25d41140aa..88a98dacbe 100644 --- a/core/object.h +++ b/core/object.h @@ -698,6 +698,7 @@ public: bool is_connected(const StringName &p_signal, Object *p_to_object, const StringName &p_to_method) const; void call_deferred(const StringName &p_method, VARIANT_ARG_LIST); + void set_deferred(const StringName &p_property, const Variant &p_value); void set_block_signals(bool p_block); bool is_blocking_signals() const; |