diff options
author | David Snopek <dsnopek@gmail.com> | 2024-02-02 10:07:45 -0600 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-02-22 14:39:50 -0600 |
commit | 23c010900c9a09c5c99bfbb0d465cd468aa74b6c (patch) | |
tree | 3eb67fc38be5fc6e0e0a168825f9a86b4d977ae0 /include/godot_cpp/classes | |
parent | f90085917b16c3daff7b2d195db9bf222119eea1 (diff) | |
download | redot-cpp-23c010900c9a09c5c99bfbb0d465cd468aa74b6c.tar.gz |
Fix _notification with parent and child classes
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r-- | include/godot_cpp/classes/wrapped.hpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp index 25a93df..fba855d 100644 --- a/include/godot_cpp/classes/wrapped.hpp +++ b/include/godot_cpp/classes/wrapped.hpp @@ -239,11 +239,16 @@ public: \ static void notification_bind(GDExtensionClassInstancePtr p_instance, int32_t p_what, GDExtensionBool p_reversed) { \ if (p_instance && m_class::_get_notification()) { \ + if (!p_reversed) { \ + m_inherits::notification_bind(p_instance, p_what, p_reversed); \ + } \ if (m_class::_get_notification() != m_inherits::_get_notification()) { \ m_class *cls = reinterpret_cast<m_class *>(p_instance); \ - return cls->_notification(p_what); \ + cls->_notification(p_what); \ + } \ + if (p_reversed) { \ + m_inherits::notification_bind(p_instance, p_what, p_reversed); \ } \ - m_inherits::notification_bind(p_instance, p_what, p_reversed); \ } \ } \ \ |