Add back support for Godot 4.3

This commit is contained in:
David Snopek
2025-12-17 21:13:06 -06:00
parent 62b4a46e72
commit ce18d99cb0
21 changed files with 304554 additions and 24 deletions

View File

@ -110,6 +110,7 @@ protected:
::godot::List<::godot::PropertyInfo> plist_owned;
void _postinitialize();
virtual void _notificationv(int32_t p_what, bool p_reversed = false) {}
Wrapped(const StringName &p_godot_class);
Wrapped(GodotObject *p_godot_object);
@ -404,6 +405,11 @@ public:
_gde_binding_reference_callback, \
}; \
\
protected: \
virtual void _notificationv(int32_t p_what, bool p_reversed = false) override { \
m_class::notification_bind(this, p_what, p_reversed); \
} \
\
private:
// Don't use this for your classes, use GDCLASS() instead.