summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-02-02 10:07:45 -0600
committerDavid Snopek <dsnopek@gmail.com>2024-02-22 14:39:50 -0600
commit23c010900c9a09c5c99bfbb0d465cd468aa74b6c (patch)
tree3eb67fc38be5fc6e0e0a168825f9a86b4d977ae0 /include/godot_cpp/classes
parentf90085917b16c3daff7b2d195db9bf222119eea1 (diff)
downloadredot-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.hpp9
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); \
} \
} \
\