diff options
author | Hendrik Brucker <hendrik.brucker@mail.de> | 2023-07-11 22:29:09 +0200 |
---|---|---|
committer | Hendrik Brucker <hendrik.brucker@mail.de> | 2023-07-14 20:04:21 +0200 |
commit | 7e21eb7e00751851fa96bc99b695d520dbbed9a4 (patch) | |
tree | e8212c64348091ab4d7d2140f82a7756d540fc98 /editor/plugins/bit_map_editor_plugin.cpp | |
parent | 0f7625ab46a64b3f5da2b09969ebabf38df9a6e9 (diff) | |
download | redot-engine-7e21eb7e00751851fa96bc99b695d520dbbed9a4.tar.gz |
Extract and reorganize texture resource classes
Diffstat (limited to 'editor/plugins/bit_map_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/bit_map_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/bit_map_editor_plugin.cpp b/editor/plugins/bit_map_editor_plugin.cpp index 30fc60b0e0..3388cab006 100644 --- a/editor/plugins/bit_map_editor_plugin.cpp +++ b/editor/plugins/bit_map_editor_plugin.cpp @@ -33,6 +33,7 @@ #include "editor/editor_scale.h" #include "scene/gui/label.h" #include "scene/gui/texture_rect.h" +#include "scene/resources/image_texture.h" void BitMapEditor::setup(const Ref<BitMap> &p_bitmap) { texture_rect->set_texture(ImageTexture::create_from_image(p_bitmap->convert_to_image())); |