diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-07-29 21:20:41 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-07-29 21:20:41 -0300 |
commit | 15db793ef277b6d2c3aae5e5a075ba2ece31b27a (patch) | |
tree | 542fe22d68d4940ebf7361da1e2980e12bc4db49 /scene/main/node.h | |
parent | e896261b87b2b8703a447f4bfaee5251bcb59b23 (diff) | |
download | redot-engine-15db793ef277b6d2c3aae5e5a075ba2ece31b27a.tar.gz |
Ensure process notification is received only if really enabled, fixes #7894
Diffstat (limited to 'scene/main/node.h')
-rw-r--r-- | scene/main/node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/node.h b/scene/main/node.h index 4b8f584ba7..9ee0340678 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -364,6 +364,7 @@ public: void set_pause_mode(PauseMode p_mode); PauseMode get_pause_mode() const; bool can_process() const; + bool can_process_notification(int p_what) const; void request_ready(); |