diff options
author | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-03-09 17:07:39 +0100 |
---|---|---|
committer | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-03-09 17:53:36 +0100 |
commit | f54014807291bde72ed5781be42460a820ea68b8 (patch) | |
tree | 80c64c4a207d7228c0bd5136c4a9b560b3e4cd16 /scene/resources/texture.h | |
parent | d3415ae5aa18e124f65161881ec45e9930e79d36 (diff) | |
download | redot-engine-f54014807291bde72ed5781be42460a820ea68b8.tar.gz |
Add dedicated setter for `ImageTextureLayered::_images` to fix `create_from_images` being hidden from the C# bindings
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r-- | scene/resources/texture.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h index 7c4d479da8..50bcec58f6 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -427,6 +427,7 @@ class ImageTextureLayered : public TextureLayered { Error _create_from_images(const TypedArray<Image> &p_images); TypedArray<Image> _get_images() const; + void _set_images(const TypedArray<Image> &p_images); protected: static void _bind_methods(); |