X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_light.py;h=2fc8c8dd02bd3dbccec4b0204dd75ed0930c378e;hb=adc26a2e141a2853b6c5025130c46a46cece4b84;hp=432705589bcd8b972c2684dbc762e7c37e05f424;hpb=160293feec7b0b976856685153cd24c7f1ce9492;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_light.py b/blender/io_mspgl/export_light.py index 43270558..2fc8c8dd 100644 --- a/blender/io_mspgl/export_light.py +++ b/blender/io_mspgl/export_light.py @@ -6,17 +6,20 @@ class LightExporter: raise ValueError("Object {} is not a light".format(obj.name)) light = obj.data - from .datafile import Resource, Statement + from .datafile import Resource, Statement, Token light_res = Resource(light.name+".light", "light") if light.type=='SUN': - pos = obj.matrix_world@mathutils.Vector((0.0, 0.0, 1.0, 0.0)) - else: + light_res.statements.append(Statement("type", Token("directional"))) + light_res.statements.append(Statement("direction", *(-obj.matrix_world.col[2])[0:3])) + elif light.type=='POINT': + light_res.statements.append(Statement("type", Token("point"))) pos = obj.matrix_world@mathutils.Vector((0.0, 0.0, 0.0, 1.0)) + light_res.statements.append(Statement("position", *obj.matrix_world.col[3][0:3])) + else: + raise Exception("Can't export light {} of unknown type {}".format(light.name, light.type)) - light_res.statements.append(Statement("position", *tuple(pos))) - c = light.color - e = light.energy - light_res.statements.append(Statement("color", c.r*e, c.g*e, c.b*e)) + c = light.color*light.energy + light_res.statements.append(Statement("color", *tuple(c))) return light_res