diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-09-28 20:04:18 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-09-28 20:04:18 +0200 |
commit | 78483a1df2f5109a14f82f00225bc60eff83d8c0 (patch) | |
tree | dc0525158ebd8c25ecba93453363e74f4c9b0c33 /modules/gdscript/gdscript.h | |
parent | 73252669b181785fdb9575f2ef2785e667fee6b4 (diff) | |
parent | 16e860bcb3a263b4e10dcd85149bda68e74eec3c (diff) | |
download | redot-engine-78483a1df2f5109a14f82f00225bc60eff83d8c0.tar.gz |
Merge pull request #82186 from dalexeev/gds-fix-property-duplication
GDScript: Fix duplication of inherited script properties
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 2b698d75d4..50ccfabcc1 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<StringName> members; //members are just indices to the instantiated script. - HashMap<StringName, Variant> constants; + // Members are just indices to the instantiated script. + HashMap<StringName, MemberInfo> member_indices; // Includes member info of all base GDScript classes. + HashSet<StringName> members; // Only members of the current class. + + // Only static variables of the current class. HashMap<StringName, MemberInfo> static_variables_indices; - Vector<Variant> static_variables; + Vector<Variant> static_variables; // Static variable values. + + HashMap<StringName, Variant> constants; HashMap<StringName, GDScriptFunction *> member_functions; - HashMap<StringName, MemberInfo> member_indices; //members are just indices to the instantiated script. HashMap<StringName, Ref<GDScript>> subclasses; HashMap<StringName, MethodInfo> _signals; Dictionary rpc_config; |