summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-09-28 20:04:18 +0200
committerYuri Sizov <yuris@humnom.net>2023-09-28 20:04:18 +0200
commit78483a1df2f5109a14f82f00225bc60eff83d8c0 (patch)
treedc0525158ebd8c25ecba93453363e74f4c9b0c33 /modules/gdscript/gdscript.h
parent73252669b181785fdb9575f2ef2785e667fee6b4 (diff)
parent16e860bcb3a263b4e10dcd85149bda68e74eec3c (diff)
downloadredot-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.h12
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;