From b103f2d8c138cace9b3fb15fe883d8468d3f4073 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 15 Jun 2025 18:33:57 +0200 Subject: [PATCH] Add a note about _notification() being multilevel --- doc/classes/Object.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 9d3d263f351..d36c2dafcc4 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -264,6 +264,7 @@ [/csharp] [/codeblocks] [b]Note:[/b] The base [Object] defines a few notifications ([constant NOTIFICATION_POSTINITIALIZE] and [constant NOTIFICATION_PREDELETE]). Inheriting classes such as [Node] define a lot more notifications, which are also received by this method. + [b]Note:[/b] Unlike other virtual methods, this method is called automatically for every script that overrides it. This means that the base implementation should not be called via [code]super[/code] in GDScript or its equivalents in other languages.