diff options
author | Raul Santos <raulsntos@gmail.com> | 2023-10-20 13:43:42 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2023-10-20 13:43:42 +0200 |
commit | 9750e49c57e79844c3696f789d4fa6275f8a3a0b (patch) | |
tree | 384ddb7d72365bbbdbb44f925dc0ec163b6bd825 /core/object/object.h | |
parent | f8818f85e6c43cdf1277e8ae85eba19ca0a003b0 (diff) | |
download | redot-engine-9750e49c57e79844c3696f789d4fa6275f8a3a0b.tar.gz |
Add `NOTIFICATION_PREDELETE_CLEANUP` notification
New notification sent after `NOTIFICATION_PREDELETE` to let Objects cleanup at the very end, it should be the last notification sent.
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index a444db0f70..f3c387594b 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -801,6 +801,8 @@ public: NOTIFICATION_POSTINITIALIZE = 0, NOTIFICATION_PREDELETE = 1, NOTIFICATION_EXTENSION_RELOADED = 2, + // Internal notification to send after NOTIFICATION_PREDELETE, not bound to scripting. + NOTIFICATION_PREDELETE_CLEANUP = 3, }; /* TYPE API */ |