X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_texture.py;h=dd8191ce9f108652b2924ee1a77fbd0197d0f94c;hp=c3c58c3b19e9ae3affab9830e95a3eec02b42762;hb=6ac405143184ff9f8e8114183a2d8f7b224d2779;hpb=7dd9bd52860aff5372a2526cf689d3a19ea37fe0 diff --git a/blender/io_mspgl/export_texture.py b/blender/io_mspgl/export_texture.py index c3c58c3b..dd8191ce 100644 --- a/blender/io_mspgl/export_texture.py +++ b/blender/io_mspgl/export_texture.py @@ -10,20 +10,21 @@ class TextureExporter: if texture.use_interpolation: if texture.use_mipmap: - tex_res.statements.append(Statement("min_filter", Token('LINEAR_MIPMAP_LINEAR'))) + tex_res.statements.append(Statement("filter", Token('LINEAR_MIPMAP_LINEAR'))) tex_res.statements.append(Statement("generate_mipmap", True)) else: - tex_res.statements.append(Statement("min_filter", Token('LINEAR'))) + tex_res.statements.append(Statement("filter", Token('LINEAR'))) tex_res.statements.append(Statement("max_anisotropy", texture.filter_eccentricity)) else: if texture.use_mipmap: - tex_res.statements.append(Statement("min_filter", Token('NEAREST_MIPMAP_NEAREST'))) + tex_res.statements.append(Statement("filter", Token('NEAREST_MIPMAP_NEAREST'))) tex_res.statements.append(Statement("generate_mipmap", True)) else: - tex_res.statements.append(Statement("min_filter", Token('NEAREST'))) + tex_res.statements.append(Statement("filter", Token('NEAREST'))) - if not self.inline_data and texture.image.filepath: - tex_res.statements.append(Statement("external_image", os.path.basename(texture.image.filepath))) + fn = os.path.basename(texture.image.filepath) + if not self.inline_data and fn: + tex_res.statements.append(Statement("external_image", fn)) else: texdata = "" colorspace = texture.image.colorspace_settings.name