diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-09 15:50:08 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-09 15:50:59 -0300 |
commit | e9bb65db815b593037a573c1c7a78e95b7550cb0 (patch) | |
tree | 3ccb0b04272cf36701028a1f662c39cc1bd9bdc1 /core/object.h | |
parent | 0e635b683b84417b0970218ce720bbc553205ca6 (diff) | |
download | redot-engine-e9bb65db815b593037a573c1c7a78e95b7550cb0.tar.gz |
-All types have editable script now in properties
-Changed clip to a property in Control which can be set by the user
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.h b/core/object.h index 7c74f70518..b675486082 100644 --- a/core/object.h +++ b/core/object.h @@ -432,7 +432,7 @@ friend void postinitialize_handler(Object*); protected: - virtual bool _use_builtin_script() const { return false; } + virtual void _initialize_classv() { initialize_class(); } virtual bool _setv(const StringName& p_name,const Variant &p_property) { return false; }; virtual bool _getv(const StringName& p_name,Variant &r_property) const { return false; }; |