diff --git a/utils/exporters/blender/addons/io_three/constants.py b/utils/exporters/blender/addons/io_three/constants.py index a5473f345acc2..551fb3df0e68c 100644 --- a/utils/exporters/blender/addons/io_three/constants.py +++ b/utils/exporters/blender/addons/io_three/constants.py @@ -257,9 +257,9 @@ WRAP = 'wrap' REPEAT = 'repeat' WRAPPING = type('Wrapping', (), { - 'REPEAT': 'RepeatWrapping', - 'CLAMP': 'ClampToEdgeWrapping', - 'MIRROR': 'MirroredRepeatWrapping' + 'REPEAT': 'repeat', + 'CLAMP': 'clamp', + 'MIRROR': 'mirror' }) ANISOTROPY = 'anisotropy' MAG_FILTER = 'magFilter'