diff options
author | MrCdK <contact@mrcdk.com> | 2019-05-20 10:45:12 +0200 |
---|---|---|
committer | MrCdK <contact@mrcdk.com> | 2019-05-20 11:08:39 +0200 |
commit | f8a9844d804252fc3c887c26a846508a88c85bb9 (patch) | |
tree | 3b5523b8d45d4c353ca5932554f9b665b43c1147 /editor/editor_resource_preview.h | |
parent | a940b4cf640930b2decb356d395ac4cd89beefaf (diff) | |
download | redot-engine-f8a9844d804252fc3c887c26a846508a88c85bb9.tar.gz |
Renamed EditorResourcePreviewGenerator.should_generate_small_preview() to generate_small_preview_automatically()
Added can_generate_small_preview() so the generator uses generate() or generate_from_path() if it returns true
Added can_generate_small_preview() and generate_small_preview_automatically() to the scripting languages
Diffstat (limited to 'editor/editor_resource_preview.h')
-rw-r--r-- | editor/editor_resource_preview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_resource_preview.h b/editor/editor_resource_preview.h index 9b9223a818..e0fd54c924 100644 --- a/editor/editor_resource_preview.h +++ b/editor/editor_resource_preview.h @@ -48,7 +48,8 @@ public: virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const; virtual Ref<Texture> generate_from_path(const String &p_path, const Size2 p_size) const; - virtual bool should_generate_small_preview() const; + virtual bool generate_small_preview_automatically() const; + virtual bool can_generate_small_preview() const; EditorResourcePreviewGenerator(); }; |