Skip to content

Commit 9f596de

Browse files
authored
Fixed error spam in TAA Export dialog (contributed by williamchange)
Fixed error spam in TAA Export dialog
2 parents d5b5d49 + 68327c1 commit 9f596de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

addons/material_maker/engine/pipeline/texture.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func in_thread_get_texture() -> Texture2D:
7171
RenderingDevice.DATA_FORMAT_R8G8B8A8_UNORM:
7272
image_format = Image.FORMAT_RGBA8
7373
var image : Image = Image.create_from_data(texture_size.x, texture_size.y, false, image_format, byte_data)
74-
texture.set_image(image)
74+
texture.set_image.call_deferred(image)
7575
texture_needs_update = false
7676
return texture
7777

0 commit comments

Comments
 (0)