diff options
author | Micky <micheledevita2@gmail.com> | 2022-09-18 02:19:55 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-11-01 23:35:48 +0100 |
commit | ebf86c96e9b648ce1f7d654032e21d4aa84b8985 (patch) | |
tree | 273fb5c2aad13abdce6571ec4a886448164a0cc4 /editor/plugins | |
parent | e6751549cf7247965d1744b8c464f5e901006f21 (diff) |
Rename Image's `get_rect` to `get_region`
Also renames its parameter to from "rect" to "region".
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/editor_preview_plugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/editor_preview_plugins.cpp b/editor/plugins/editor_preview_plugins.cpp index 997dc0b2b5..5f9446c3b1 100644 --- a/editor/plugins/editor_preview_plugins.cpp +++ b/editor/plugins/editor_preview_plugins.cpp @@ -93,7 +93,7 @@ Ref<Texture2D> EditorTexturePreviewPlugin::generate(const Ref<Resource> &p_from, return Ref<Texture2D>(); } - img = atlas->get_rect(atex->get_region()); + img = atlas->get_region(atex->get_region()); } else { Ref<Texture2D> tex = p_from; if (tex.is_valid()) { |