diff options
| author | Bojidar Marinov | 2017-05-30 23:20:15 +0300 |
|---|---|---|
| committer | Bojidar Marinov | 2017-11-21 20:58:21 +0200 |
| commit | 0cf9597758f3af3afc951d0bf02dee1aeb9a6daf (patch) | |
| tree | 2a5fe6f1ba36a79ccc0091d0235ec48e4d92012e /core/object.h | |
| parent | 7bbde636e802f85c4ed9ee95b9ef19abc1aa249d (diff) | |
| download | godot-0cf9597758f3af3afc951d0bf02dee1aeb9a6daf.tar.gz godot-0cf9597758f3af3afc951d0bf02dee1aeb9a6daf.tar.zst godot-0cf9597758f3af3afc951d0bf02dee1aeb9a6daf.zip | |
Diffstat (limited to 'core/object.h')
| -rw-r--r-- | core/object.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h index 7af2c78fc..3ac699f97 100644 --- a/core/object.h +++ b/core/object.h @@ -477,6 +477,8 @@ private: Array _get_incoming_connections() const; void _set_bind(const String &p_set, const Variant &p_value); Variant _get_bind(const String &p_name) const; + void _set_indexed_bind(const NodePath &p_name, const Variant &p_value); + Variant _get_indexed_bind(const NodePath &p_name) const; void *_script_instance_bindings[MAX_SCRIPT_INSTANCE_BINDINGS]; @@ -627,6 +629,8 @@ public: void set(const StringName &p_name, const Variant &p_value, bool *r_valid = NULL); Variant get(const StringName &p_name, bool *r_valid = NULL) const; + void set_indexed(const Vector<StringName> &p_names, const Variant &p_value, bool *r_valid = NULL); + Variant get_indexed(const Vector<StringName> &p_names, bool *r_valid = NULL) const; void get_property_list(List<PropertyInfo> *p_list, bool p_reversed = false) const; @@ -687,6 +691,7 @@ public: bool is_blocking_signals() const; Variant::Type get_static_property_type(const StringName &p_property, bool *r_valid = NULL) const; + Variant::Type get_static_property_type_indexed(const Vector<StringName> &p_path, bool *r_valid = NULL) const; virtual void get_translatable_strings(List<String> *p_strings) const; |
