summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorMrCdK <contact@mrcdk.com>2019-05-20 10:45:12 +0200
committerMrCdK <contact@mrcdk.com>2019-05-20 11:08:39 +0200
commitf8a9844d804252fc3c887c26a846508a88c85bb9 (patch)
tree3b5523b8d45d4c353ca5932554f9b665b43c1147 /doc/classes
parenta940b4cf640930b2decb356d395ac4cd89beefaf (diff)
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 'doc/classes')
-rw-r--r--doc/classes/EditorResourcePreviewGenerator.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/classes/EditorResourcePreviewGenerator.xml b/doc/classes/EditorResourcePreviewGenerator.xml
index 6592ffd1a8..76b9445933 100644
--- a/doc/classes/EditorResourcePreviewGenerator.xml
+++ b/doc/classes/EditorResourcePreviewGenerator.xml
@@ -9,6 +9,14 @@
<tutorials>
</tutorials>
<methods>
+ <method name="can_generate_small_preview" qualifiers="virtual">
+ <return type="bool">
+ </return>
+ <description>
+ If this function returns true the generator will call [method generate] or [method generate_from_path] for small previews too.
+ By default it returns false.
+ </description>
+ </method>
<method name="generate" qualifiers="virtual">
<return type="Texture">
</return>
@@ -35,6 +43,14 @@
Care must be taken because this function is always called from a thread (not the main thread).
</description>
</method>
+ <method name="generate_small_preview_automatically" qualifiers="virtual">
+ <return type="bool">
+ </return>
+ <description>
+ If this function returns true the generator will automatically generate the small previews from the normal preview texture generated by the methods [method generate] or [method generate_from_path].
+ By default it returns false.
+ </description>
+ </method>
<method name="handles" qualifiers="virtual">
<return type="bool">
</return>