Ver código fonte

Fixed exporter breakage.

Mr.doob 10 anos atrás
pai
commit
9dc0771fde

+ 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):