diff options
author | kobewi <kobewi4e@gmail.com> | 2022-06-08 00:50:25 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-06-08 00:57:03 +0200 |
commit | 80025171cd528ffe0eee4c437c1325f7111558c0 (patch) | |
tree | ab65c4350442237259178ae117bbfdb23f6035a0 /scene/resources/texture.h | |
parent | 60eec78a1fd92f3f7685dec65db62f6c42941885 (diff) | |
download | redot-engine-80025171cd528ffe0eee4c437c1325f7111558c0.tar.gz |
Re-add internal image field to ImageTexture
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r-- | scene/resources/texture.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h index 3e8ac060c4..317756e313 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -102,6 +102,11 @@ class ImageTexture : public Texture2D { protected: virtual void reload_from_file() override; + + bool _set(const StringName &p_name, const Variant &p_value); + bool _get(const StringName &p_name, Variant &r_ret) const; + void _get_property_list(List<PropertyInfo> *p_list) const; + static void _bind_methods(); public: |