diff options
| author | Emmanuel Leblond | 2017-04-09 13:26:48 +0200 |
|---|---|---|
| committer | Emmanuel Leblond | 2017-04-09 13:27:07 +0200 |
| commit | 23c310be7b6d1ce77029e765e4411e4fab2d1a40 (patch) | |
| tree | 8eb5f3f65b84dcadaa15cbdb2275c27490c030dc /core/bind/core_bind.h | |
| parent | efba539f93bc9800589c03d1538843afed56161e (diff) | |
| download | godot-23c310be7b6d1ce77029e765e4411e4fab2d1a40.tar.gz godot-23c310be7b6d1ce77029e765e4411e4fab2d1a40.tar.zst godot-23c310be7b6d1ce77029e765e4411e4fab2d1a40.zip | |
Add _ClassDB.class_[g|s]et_property to ClassDB exposed methods
Diffstat (limited to '')
| -rw-r--r-- | core/bind/core_bind.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index 1d231ff03..64e540b10 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -586,6 +586,8 @@ public: Array get_signal_list(StringName p_class, bool p_no_inheritance = false) const; Array get_property_list(StringName p_class, bool p_no_inheritance = false) const; + Variant get_property(Object *p_object, const StringName &p_property) const; + Error set_property(Object *p_object, const StringName &p_property, const Variant &p_value) const; bool has_method(StringName p_class, StringName p_method, bool p_no_inheritance = false) const; |
