Browse Source

Fixed exporter breakage.

Mr.doob 11 năm trước cách đây
mục cha
commit
9dc0771fde
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      utils/exporters/blender/addons/io_three/__init__.py

+ 1 - 1
utils/exporters/blender/addons/io_three/__init__.py

@@ -156,7 +156,7 @@ def _mapping(index):
 
 bpy.types.Texture.THREE_mapping = EnumProperty(
     name='Mapping',
-    items = [_mapping(x) for x in range(5)],
+    items = [_mapping(x) for x in range(4)],
     default=constants.MAPPING_TYPES.UV)
 
 class TEXTURE_PT_hello(bpy.types.Panel):