浏览代码

fix blender export by removing ref to constants.AREA_LIGHT removed in 43f1e3d

Toni Alatalo 10 年之前
父节点
当前提交
301cd45567
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      utils/exporters/blender/addons/io_three/exporter/object.py

+ 1 - 1
utils/exporters/blender/addons/io_three/exporter/object.py

@@ -109,7 +109,7 @@ class Object(base_classes.BaseNode):
 
         lights = (constants.AMBIENT_LIGHT,
                   constants.DIRECTIONAL_LIGHT,
-                  constants.AREA_LIGHT, constants.POINT_LIGHT,
+                  constants.POINT_LIGHT,
                   constants.SPOT_LIGHT, constants.HEMISPHERE_LIGHT)
 
         if self[constants.TYPE] == constants.MESH: