summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript.h
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2024-04-30 11:50:10 -0300
committerGeorge Marques <george@gmarqu.es>2024-05-02 11:25:52 -0300
commit99b702ea3d12952b842055a4d5d4b1928ed69186 (patch)
tree49de3eda80a2eb961337d2e4a354074baeaca7da /modules/gdscript/gdscript.h
parent64520fe6741d8ec3c55e0c9618d3fadcda949f63 (diff)
downloadredot-engine-99b702ea3d12952b842055a4d5d4b1928ed69186.tar.gz
GDScript: Call implicit ready on base script first
It is generally expected that the base class is called before the inherited clas. This commit implements this behavior for the implicit ready function (`@onready` annotation) to make it consistent with the expectations.
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r--modules/gdscript/gdscript.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h
index 7bd68ac0b1..51267ecb84 100644
--- a/modules/gdscript/gdscript.h
+++ b/modules/gdscript/gdscript.h
@@ -365,6 +365,8 @@ class GDScriptInstance : public ScriptInstance {
SelfList<GDScriptFunctionState>::List pending_func_states;
+ void _call_implicit_ready_recursively(GDScript *p_script);
+
public:
virtual Object *get_owner() { return owner; }