From 73265d6f4fd252f78d029c2aeb4fdd5dafbf475e Mon Sep 17 00:00:00 2001 From: "georgiy.m.markelov@gmail.com" Date: Mon, 24 Apr 2023 15:03:51 +0300 Subject: [PATCH] added ".exr", ".open_exr", ".tif", ".tiff", ".zfile", ".tx" SUPPORTED_FORMATS --- materialx/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/materialx/utils.py b/materialx/utils.py index b6d20bfa6..6ca461313 100644 --- a/materialx/utils.py +++ b/materialx/utils.py @@ -338,7 +338,8 @@ def get_temp_file(suffix, name=None, is_rand=False): return temp_dir() / name -SUPPORTED_FORMATS = {".png", ".jpeg", ".jpg", ".hdr", ".tga", ".bmp"} +SUPPORTED_FORMATS = {".png", ".jpeg", ".jpg", ".hdr", ".tga", ".bmp", + ".exr", ".open_exr", ".tif", ".tiff", ".zfile", ".tx"} DEFAULT_FORMAT = ".hdr" BLENDER_DEFAULT_FORMAT = "HDR" BLENDER_DEFAULT_COLOR_MODE = "RGB" -- 2.30.2