diff options
author | boruok <burutarunootoko@gmail.com> | 2021-09-28 23:54:47 +0900 |
---|---|---|
committer | boruok <burutarunootoko@gmail.com> | 2021-09-28 23:54:47 +0900 |
commit | 2cc2adedaaf4a0c99915c781b68ccb6b17e59a98 (patch) | |
tree | d2ffbbf6ad549feb8d7ec4b5fd4c3b7b111f984c /scene/resources/texture.h | |
parent | 7cdd8629ad4c2994c7882fe2c1dccd29ce5dec2c (diff) | |
download | redot-engine-2cc2adedaaf4a0c99915c781b68ccb6b17e59a98.tar.gz |
4.0 fix atlas texture return null
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r-- | scene/resources/texture.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h index f6b991c335..576c053c25 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -252,6 +252,8 @@ public: bool is_pixel_opaque(int p_x, int p_y) const override; + virtual Ref<Image> get_image() const override; + AtlasTexture(); }; |