From 16e860bcb3a263b4e10dcd85149bda68e74eec3c Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Sat, 23 Sep 2023 15:19:43 +0300 Subject: GDScript: Fix duplication of inherited script properties --- modules/gdscript/gdscript.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'modules/gdscript/gdscript.h') diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 2fd2ec236a..cbd1dced2f 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -94,12 +94,16 @@ class GDScript : public Script { GDScript *_base = nullptr; //fast pointer access GDScript *_owner = nullptr; //for subclasses - HashSet members; //members are just indices to the instantiated script. - HashMap constants; + // Members are just indices to the instantiated script. + HashMap member_indices; // Includes member info of all base GDScript classes. + HashSet members; // Only members of the current class. + + // Only static variables of the current class. HashMap static_variables_indices; - Vector static_variables; + Vector static_variables; // Static variable values. + + HashMap constants; HashMap member_functions; - HashMap member_indices; //members are just indices to the instantiated script. HashMap> subclasses; HashMap _signals; Dictionary rpc_config; -- cgit v1.2.3